/ Published in: Java
Expand |
Embed | Plain Text
import java.io.FileInputStream; import java.io.FileOutputStream; import java.io.IOException; public class CopyBytes { try { int c; while ((c = in.read()) != -1) { out.write(c); } } finally { if (in != null) { in.close(); } if (out != null) { out.close(); } } } }
You need to login to post a comment.
