重點:呼叫參數、賭取檔案方式
程式名稱 readfile.java
文字檔 st.txt (內容為數句英文句子)
[執行]
javac readfile.java
java readfile st.txt
[結果]
印出st.txt 的內容
import java.io.*;
public class readfile{
public static void main (String args[]){
try{
FileReader fw= new FileReader(args[0]);
BufferedReader buf = new BufferedReader(fw);
String s;
while ( (s=buf.readLine() ) != null)
System.out.println(s);
buf.close();
}
catch (IOException e){
System.out.println("Error: " + e.toString());
}
}
}
沒有留言:
張貼留言