WEB开发网
开发学院WEB开发Jsp java中对于文件属性的一些操作 阅读

java中对于文件属性的一些操作

 2008-01-05 09:27:17 来源:WEB开发网   
核心提示: 1. 当java.io中,假如文件的操作的时候,java中对于文件属性的一些操作,判定是否隐藏用File.ishiden()判定是否只读,可用File.canWrite(). 2. 当要设置是否是可读或者是隐藏时,因为路径file.getAbsolutePath()中可能会还有空格,所以必须用引号把它括起来,在j


    1. 当java.io中,假如文件的操作的时候,判定是否隐藏用File.ishiden()

判定是否只读,可用File.canWrite().     2. 当要设置是否是可读或者是隐藏时,在java中除了提供File.setReadOnly()外,就无其他方法了。       所以我们必须到Dos环境下去设置,在java中用Runtime.getRuntime().exec("attrib " + """ + file.getAbsolutePath() + """+ " +R")该方法可以实现。因为路径file.getAbsolutePath()中可能会还有空格,所以必须用引号把它括起来,当作一个参数。这样就可以实现了 (1)  设置只读Runtime.getRuntime().exec("attrib " + """ + file.getAbsolutePath() + """+ " +R"); (2)  设置可写Runtime.getRuntime().exec("attrib " + """ + file.getAbsolutePath() + """+ " -R"); (3)  设置隐藏Runtime.getRuntime().exec("attrib " + """ + file.getAbsolutePath() + """+ " +H"); (4)  设置非隐藏Runtime.getRuntime().exec("attrib " + """ + file.getAbsolutePath() + """+ " -H");     3.对于读写文件的一些操作源代码     package fileControl;   import java.io.BufferedReader; import java.io.BufferedWriter; import java.io.File; import java.io.FileReader; import java.io.FileWriter; import java.io.IOException; import java.io.RandomaccessFile;   public class FileControl {        PRivate static String fileName;        private static File file;        public static void main(String[] args) {               try {                     fileName = "exercise.java";                     file = new File("E:" + "", fileName);                     if (file.exists()) { //                          file.delete();

Tags:java 对于 文件

编辑录入:爽爽 [复制链接] [打 印]
赞助商链接