當使用File類別建立一個文件物件後,例如:
Filefile=newFile(C:\myletter,letter.txt);
如果C:myletter目錄中沒有名字為letter.txt文件,文件物件file呼叫方法:
publicbooleancreateNewFile();
可以在C:myletter目錄中建立一個名字為letter.txt的檔案。文件物件呼叫方法public boolean delete()可以刪除目前文件,例如:
file.delete();
當要執行一個本機上的可執行檔時,可以使用java.lang套件中的Runtime類別。首先使用Runtime類別聲明一個物件:
Runtimeec;
然後使用該類別的getRuntime()靜態方法建立這個物件:
ec=Runtime.getRuntime();
ec可以呼叫exec(String command)方法開啟本機上的可執行檔或執行一個操作。
例如,Runtime物件開啟Windows平台上的記事本程式和瀏覽器:
importjava.io.*;publicclassMain{publicstaticvoidmain(Stringargs[]){try{Runtimece=Runtime.getRuntime();Filefile=newFile(c:/windows,Notepad.exe);ce.exec(file.getAbsolutePath()); file=newFile(C:\ProgramFiles\InternetExplorer,IEXPLOREwww.sohu.com);ce.exec(file.getAbsolutePath());}catch(Exceptione){System.out.println(e);}}}}