初始化大小为“长”数据类型的字节数组?

时间:2014-02-21 05:47:40

标签: java byte bytearray long-integer

所以我有这个方法将文件中的数据读入字节数组,起点为“offset”,长度为“len”:

public static byte[] readFileDataToByteArray( File inFile, long offset, int len ) {

    byte[] buffer = new byte[ len ];

    try {
        RandomAccessFile in = new RandomAccessFile( inFile, "r" );
        in.seek( off );
        in.read( buffer );          
        in.close();
    } catch ( IOException e ) {
        System.err.println("Error readSentence: Error reading " + inFile ); 
        System.exit(1);
    }
    return buffer;
}

现在只要len变量不超过允许的最大int值,这就可以了。但是当我必须使用“long”作为变量len的数据类型才能传递更大的数字(即创建更大的数组)时,我得到以下错误:

../util/Common.java:564: error: possible loss of precision
    byte[] buffer = new byte[ len ];
                              ^
required: int
found:    long
1 error

所以基本上我需要做的就是创建一个大小为“long”数据类型的字节数组。任何提示?

2 个答案:

答案 0 :(得分:1)

我刚试过。最大的数组大小不能超过堆大小。因此,如果可能的话,最好在几次处理文件。

public class RandomAccessFileTest {
    static public class LargeArray {
        public long offset;
        public long len;
        public int arraySize; // can't exceed JVM heap size
        byte[] byte_arr;

        public LargeArray(long offset, long len, int arraySize) {
            this.offset = offset;
            this.len    = len;
            this.arraySize = arraySize;
        }
    }

    public static LargeArray readFileDataToByteArray(File inFile, LargeArray  array) {
        long count = array.len/array.arraySize;
        if (array.len > 0 ) {
            try{
                int arr_len = (count == 0) ? (int)array.len:array.arraySize;
                array.byte_arr = new byte[arr_len];
                RandomAccessFile in = new RandomAccessFile( inFile, "r" );
                in.seek( array.offset );
                in.read( array.byte_arr );          
                in.close();

                array.offset += arr_len;
                array.len    -= arr_len;
                return array;
            } catch ( IOException e ) {
                System.err.println("Error readSentence: Error reading " + inFile ); 
                System.exit(1);
            }       
        }
        return null;
    }

    public static void main(String[] args) {

        LargeArray array = new LargeArray(5,1000000, 10000);
        File file = new File("test.txt");

        while((array = readFileDataToByteArray(file, array)) != null) {
            System.out.println(new String(array.byte_arr));
        }   
    }
}

答案 1 :(得分:-1)

您可以查看此链接stackOverflow

一个关注词,总是在插入它们之前检查原始范围。 在这里你需要一个字节数组大小来取长值,这在我看来是一个无效的场景,因为long可以在其范围内具有精度。精确值的地板/天花板肯定会导致精度损失。