testbytearrayoutputstream.java
来自「一个很好的Java函数实例」· Java 代码 · 共 36 行
JAVA
36 行
package apibook.c3.s7;import java.io.*;import java.util.zip.*;//public class TestByteArrayOutputStream { public TestByteArrayOutputStream() { } public static void main(String[] args) { try { FileInputStream in = new FileInputStream(args[0]); // Create compressed stream that writes to byte array output stream ByteArrayOutputStream b = new ByteArrayOutputStream(); GZIPOutputStream out = new GZIPOutputStream(b); byte[] buf = new byte[512]; int howmany; while ((howmany = in.read(buf)) > 0) { out.write(buf, 0, howmany); } in.close(); out.flush(); byte[] compressedBytes = b.toByteArray(); // get byte array b.writeTo(new FileOutputStream(args[1])); // write to file out.close(); // closes both out and b System.out.println("compressed size: " + compressedBytes.length); // ... do something with byte array } catch (IOException e) { System.out.println(e); } }}
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?