web-dev-qa-db-ja.com

Javaのbyte []配列にファイルを読み込むエレガントな方法

可能性のある複製:
Javaのbyte []へのファイル

ファイルからデータを読み取り、それをパーセルにマーシャリング解除したい。ドキュメントでは、FileInputStreamにすべてのコンテンツを読み取るメソッドがあることは明確ではありません。これを実装するために、次のことを行います。

FileInputStream filein = context.openFileInput(FILENAME);


int read = 0;
int offset = 0;
int chunk_size = 1024;
int total_size = 0;

ArrayList<byte[]> chunks = new ArrayList<byte[]>();
chunks.add(new byte[chunk_size]);
//first I read data from file chunk by chunk
while ( (read = filein.read(chunks.get(chunks.size()-1), offset, buffer_size)) != -1) {
    total_size+=read;
    if (read == buffer_size) {
         chunks.add(new byte[buffer_size]);
    }
}
int index = 0;

// then I create big buffer        
byte[] rawdata = new byte[total_size];

// then I copy data from every chunk in this buffer
for (byte [] chunk: chunks) {
    for (byte bt : chunk) {
         index += 0;
         rawdata[index] = bt;
         if (index >= total_size) break;
    }
    if (index>= total_size) break;
}

// and clear chunks array
chunks.clear();

// finally I can unmarshall this data to Parcel
Parcel parcel = Parcel.obtain();
parcel.unmarshall(rawdata,0,rawdata.length);

このコードは見苦しいと思うので、私の質問は次のとおりです。ファイルからbyte []に​​データを美しく読み込む方法は? :)

70
Arseniy

昔:

これらのいずれかを呼び出す

byte[] org.Apache.commons.io.FileUtils.readFileToByteArray(File file)
byte[] org.Apache.commons.io.IOUtils.toByteArray(InputStream input) 

から

http://commons.Apache.org/io/

ライブラリのフットプリントがAndroidアプリに対して大きすぎる場合は、commons-ioライブラリの関連クラスを使用できます

今日(Java 7以降またはAndroid AP​​Iレベル26以降)

幸いなことに、nioパッケージにはいくつかの便利なメソッドがあります。例えば:

byte[] Java.nio.file.Files.readAllBytes(Path path)

ここにJavadoc

136
Lukas Eder

これも機能します:

import Java.io.*;

public class IOUtil {

    public static byte[] readFile(String file) throws IOException {
        return readFile(new File(file));
    }

    public static byte[] readFile(File file) throws IOException {
        // Open file
        RandomAccessFile f = new RandomAccessFile(file, "r");
        try {
            // Get and check length
            long longlength = f.length();
            int length = (int) longlength;
            if (length != longlength)
                throw new IOException("File size >= 2 GB");
            // Read file and return data
            byte[] data = new byte[length];
            f.readFully(data);
            return data;
        } finally {
            f.close();
        }
    }
}
62
Paul

Google Guava を使用する場合(使用しない場合は、使用する必要があります): ByteStreams.toByteArray(InputStream) または Files.toByteArray(File) を呼び出すことができます

37

これは私のために働く:

File file = ...;
byte[] data = new byte[(int) file.length()];
try {
    new FileInputStream(file).read(data);
} catch (Exception e) {
    e.printStackTrace();
}
17
domsom

ByteArrayOutputStream を使用します。プロセスは次のとおりです。

  • InputStreamを取得してデータを読み取ります
  • ByteArrayOutputStreamを作成します。
  • すべてのInputStreamOutputStreamにコピーします
  • toByteArray() メソッドを使用して、ByteArrayOutputStreamからbyte[]を取得します
13
Vivien Barousse

次のApache commons関数をご覧ください。

org.Apache.commons.io.FileUtils.readFileToByteArray(File)
7
BaSche