public class CopyText { public static void main(String[] args) { copy_1(); } public static void copy_1() { FileWriter fw = null; FileReader fr = null; ...
public class CopyText { public static void main(String[] args) { copy_1(); } public static void copy_1() { FileWriter fw = null; FileReader fr = null; try { fw = new FileWriter("demo_desc.txt"); //與已有文件關聯 fr = new FileReader("demo_src.txt"); int ch = 0; while ((ch = fr.read()) != -1) { fw.write(ch); } } catch (IOException e) { throw new RuntimeException("讀寫失敗!"); } finally { if (fr != null) { try { fr.close(); } catch (IOException e) { throw new RuntimeException("關閉流失敗!"); } } if (fw != null) { try { fr.close(); } catch (IOException e) { throw new RuntimeException("關閉流失敗!"); } } } } public static void copy_2() { FileWriter fw = null; FileReader fr = null; try { fw = new FileWriter("demo_desc.txt"); //與已有文件關聯 fr = new FileReader("demo_src.txt"); char[] buf = new char[1024]; int num = 0; while ((num = fr.read(buf)) != -1) { fw.write(buf, 0, num); } } catch (IOException e) { throw new RuntimeException("讀寫失敗!"); } finally { if (fr != null) { try { fr.close(); } catch (IOException e) { throw new RuntimeException("關閉流失敗!"); } } if (fw != null) { try { fr.close(); } catch (IOException e) { throw new RuntimeException("關閉流失敗!"); } } } } }