InputStream is = new FileInputStream("a.txt"); FileOutputStream fos = new FileOutputStream("b.txt"); byte[] b = new byte[1024]; while ((is.read(b)) !=
確定! 回上一頁