コード例 #1
0
ファイル: File.cs プロジェクト: advdig/advgp2_administracion
        /**
         * Adds the biff record data to the memory allocated for this File
         *
         * @exception IOException
         * @param record the record to add to the excel data
         */
        public void write(ByteData record)
        {
            byte[] bytes = record.getBytes();

            data.write(bytes);
        }
コード例 #2
0
ファイル: File.cs プロジェクト: morninn/PetSof
        /**
         * Adds the biff record data to the memory allocated for this File
         *
         * @exception IOException
         * @param record the record to add to the excel data
         */
        public void write(ByteData record)
        {
            byte[] bytes = record.getBytes();

            data.write(bytes);
        }