可能性のある複製:
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 []にデータを美しく読み込む方法は? :)
これらのいずれかを呼び出す
byte[] org.Apache.commons.io.FileUtils.readFileToByteArray(File file)
byte[] org.Apache.commons.io.IOUtils.toByteArray(InputStream input)
から
ライブラリのフットプリントがAndroidアプリに対して大きすぎる場合は、commons-ioライブラリの関連クラスを使用できます
幸いなことに、nioパッケージにはいくつかの便利なメソッドがあります。例えば:
byte[] Java.nio.file.Files.readAllBytes(Path path)
これも機能します:
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();
}
}
}
Google Guava を使用する場合(使用しない場合は、使用する必要があります): ByteStreams.toByteArray(InputStream)
または Files.toByteArray(File)
を呼び出すことができます
これは私のために働く:
File file = ...;
byte[] data = new byte[(int) file.length()];
try {
new FileInputStream(file).read(data);
} catch (Exception e) {
e.printStackTrace();
}
ByteArrayOutputStream
を使用します。プロセスは次のとおりです。
InputStream
を取得してデータを読み取りますByteArrayOutputStream
を作成します。InputStream
をOutputStream
にコピーしますtoByteArray()
メソッドを使用して、ByteArrayOutputStream
からbyte[]
を取得します次のApache commons関数をご覧ください。
org.Apache.commons.io.FileUtils.readFileToByteArray(File)