[size=x-small]
import Java.io.File;
import Java.io.IOException;
public class 設置文件屬性 {
// 執行以下代碼你將看到一個屬性為隱藏的文件(D:\ddd.ddd)
// 請到D盤下查看
public static void main(String[] args) throws IOException {
// 創建新文件
File file = new File("D:\\ddd.ddd");
// 刪除文件並創建新文件
file.delete();
file.createNewFile();
// 拼DOS命令
// attrib的祥細功能介紹請在DOS內輸入 " attrib /? " 查看
String sets = "attrib +H \"" + file.getAbsolutePath() + "\"";
// 輸出命令串
System.out.println(sets);
// 運行命令串
Runtime.getRuntime().exec(sets);
}
} [/size]