Java.io.File.getCanonicalFile()方法实例
java.io.File.getCanonicalFile() 方法返回此抽象路径名的规范形式。
声明
以下是java.io.File.getCanonicalFile()方法的声明:
public File getCanonicalFile()
参数
-
NA
返回值
该方法返回同一个文件或目录的规范路径名字符串表示
异常
-
IOException -- 如果发生I/ O错误
-
SecurityException -- 如果一个系统属性值不能被访问。
例子
下面的示例演示java.io.File.getCanonicalFile()方法的用法。
package com.yiibai; import java.io.File; public class FileDemo { public static void main(String[] args) { File f = null; File f1 = null; String path = ""; boolean bool = false; try{ // create new files f = new File("C:\Program Files\..\test.txt"); // create new canonical form file object f1 = f.getCanonicalFile(); // returns true if the file exists bool = f1.exists(); // returns absolute pathname path = f1.getAbsolutePath(); // if file exists if(bool) { // prints System.out.print(path+" Exists? "+ bool); } }catch(Exception e){ // if any error occurs e.printStackTrace(); } } }
让我们编译和运行上面的程序,这将产生以下结果:
C: est.txt Exists? true