16

ByteArrayInputStream の形式の画像があります。これを取得して、ファイルシステム内の場所に保存できるようにしたいと考えています。

ぐるぐる回っていますが、助けていただけませんか。

4

4 に答える 4

25

すでにApachecommons-ioを使用している場合は、次の方法で使用できます。

 IOUtils.copy(byteArrayInputStream, new FileOutputStream(outputFileName));
于 2010-05-13T06:19:45.963 に答える
7
InputStream in = //your ByteArrayInputStream here
OutputStream out = new FileOutputStream("filename.jpg");

// Transfer bytes from in to out
byte[] buf = new byte[1024];
int len;
while ((len = in.read(buf)) > 0) {
    out.write(buf, 0, len);
}
in.close();
out.close();
于 2010-05-13T06:00:02.347 に答える
2

次のコードを使用できます。

ByteArrayInputStream input = getInputStream();
FileOutputStream output = new FileOutputStream(outputFilename);

int DEFAULT_BUFFER_SIZE = 1024;
byte[] buffer = new byte[DEFAULT_BUFFER_SIZE];
long count = 0;
int n = 0;

n = input.read(buffer, 0, DEFAULT_BUFFER_SIZE);

while (n >= 0) {
   output.write(buffer, 0, n);
   n = input.read(buffer, 0, DEFAULT_BUFFER_SIZE);
}
于 2010-05-13T05:59:41.847 に答える
-3
    ByteArrayInputStream stream  = <<Assign stream>>;
    byte[] bytes = new byte[1024];
    stream.read(bytes);
    BufferedWriter writer = new BufferedWriter(new FileWriter(new File("FileLocation")));
    writer.write(new String(bytes));
    writer.close();

Buffered Writerは、FileWriterと比較してファイルの書き込みのパフォーマンスを向上させます。

于 2010-05-13T10:15:50.833 に答える