本帖最后由 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(); } }
|