Java 程式設計 -- 檔案

Java 程式

簡介

運算式

分枝

迴圈

陣列

函數

遞迴

錯誤處理

物件導向

封裝

繼承

多型

技巧

函式庫

字串

數學

正規表達式

容器

檔案

網路

資料庫

視窗

Thread

Listener

錯誤陷阱

相關檔案

相關資源

教學錄影

Eclipse

考題解答

訊息

相關網站

參考文獻

最新修改

簡體版

English

範例:整數輸出

import java.io.*;
public class OutputStream1 {
  public static void main(String[] args) throws Exception {
    DataOutputStream out = new DataOutputStream(new FileOutputStream("OutputStream.dat"));
    for (int i=0; i<10; i++)
      out.writeInt(i);
    out.close();
  }
}

範例:文字檔複製

import java.io.*;
public class IO1 {
  public static void main(String args[]) throws Exception {
    FileReader reader = new FileReader("InTest.txt");
    char[] data = new char[1024];
    int num = reader.read(data);
    String text = new String(data, 0, num);
    System.out.println(text);
    reader.close();
 
    FileWriter writer = new FileWriter("OutTest.txt");
    writer.write(text);
    writer.close();
  }
}

Facebook

Unless otherwise stated, the content of this page is licensed under Creative Commons Attribution-NonCommercial-ShareAlike 3.0 License