程序師世界是廣大編程愛好者互助、分享、學習的平台,程序師世界有你更精彩!
首頁
編程語言
C語言|JAVA編程
Python編程
網頁編程
ASP編程|PHP編程
JSP編程
數據庫知識
MYSQL數據庫|SqlServer數據庫
Oracle數據庫|DB2數據庫
 程式師世界 >> 編程語言 >> JAVA編程 >> J2EE >> 使用java創建隱藏文件

使用java創建隱藏文件

編輯:J2EE

[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]

  1. 上一頁:
  2. 下一頁:
Copyright © 程式師世界 All Rights Reserved