java中File类显示文件默认将隐藏文件也显示出来吗
2个回答
2018-10-17 · 知道合伙人互联网行家
关注
展开全部
上说,就是用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);
}
}
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);
}
}
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询