利用java建设埋没文件
[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]