java 中如何设置建立的txt文件为隐藏
发布网友
发布时间:2022-04-23 06:28
我来回答
共1个回答
热心网友
时间:2023-09-05 11:35
从根本上说,就是用Java调用CMD,然后用CMD的隐藏文件的命令。
import java.io.File;
import java.io.IOException;
public class DoFile {
public static void main(String[] args) throws IOException {
File file = new File("d:/test.txt");
// 删除文件并创建新文件
file.delete();
file.createNewFile();
// attrib的祥细功能介绍请在CMD内输入 " attrib /? " 查看
String sets = "attrib +H \"" + file.getAbsolutePath() + "\"";
// 输出命令串
System.out.println(sets);
// 运行命令串
Runtime.getRuntime().exec(sets);
}
}