黑马程序员技术交流社区
标题: canExecute()....求解 [打印本页]
作者: 328078121 时间: 2013-8-30 23:25
标题: canExecute()....求解
本帖最后由 328078121 于 2013-8-31 19:28 编辑
不管我的 File f=new File(”e:\\ADT-21.1.0.zip“); ” “里面随便填什么都会返回true ,我填了一个文件夹也返回true,填了一个.txt文件也返回true,这是什么情况????
package enhanceTest;
import java.io.*;
public class Demo11 {
/**
* @param args
* @throws IOException
*/
public static void main(String[] args) throws IOException {
// TODO Auto-generated method stub
File f=new File("e:\\ADT-21.1.0.zip");//随便填 下面都返回true 为什么???
System.out.println(f.canExecute());
File[] files= f.listRoots();
for(File file:files)
{
System.out.println(file.getAbsolutePath());
}
Demo11 d=new Demo11();
}
}
作者: 月黑风高 时间: 2013-8-31 09:28
file.exists() 验证封装的文件对象是否存在
调用canExecute()只是验证程序能否运行,运行程序当然返回true
欢迎光临 黑马程序员技术交流社区 (http://bbs.itheima.com/) |
黑马程序员IT技术论坛 X3.2 |