注意大小写:
File mydir=new File("d:/java/syw");
File[] contents=mydir.listFiles();

解决方案 »

  1.   

    listFiles
    public File[] listFiles()
    Returns an array of abstract pathnames denoting the files in the directory denoted by this abstract pathname. 
    If this abstract pathname does not denote a directory, then this method returns null. Otherwise an array of File objects is returned, one for each file or directory in the directory. Pathnames denoting the directory itself and the directory's parent directory are not included in the result. Each resulting abstract pathname is constructed from this abstract pathname using the File(File, String) constructor. Therefore if this pathname is absolute then each resulting pathname is absolute; if this pathname is relative then each resulting pathname will be relative to the same directory. There is no guarantee that the name strings in the resulting array will appear in any specific order; they are not, in particular, guaranteed to appear in alphabetical order. 
    Returns:
    An array of abstract pathnames denoting the files and directories in the directory denoted by this abstract pathname. The array will be empty if the directory is empty. Returns null if this abstract pathname does not denote a directory, or if an I/O error occurs. 
    Throws: 
    SecurityException - If a security manager exists and its SecurityManager.checkRead(java.lang.String) method denies read access to the directory
    Since:
    1.2 有这个方法啊,看看你是否import java.io.*;
      

  2.   

    JAVA大小写敏感,贴主是大小写错了
      

  3.   

    楼主是不是写别的程序惯了,JAVA是大小写敏感的啊