Java Java.io.File.list()方法

  • 描述

    java.io.File.list()返回此抽象路径名定义的目录中文件和目录的数组。如果抽象路径名不表示目录,则该方法返回null。
  • 声明

    以下是java.io.File.list()方法的声明-
     public String[] list()
  • 参数

    不适用
  • 返回值

    该方法返回此抽象路径名表示的目录中文件和目录的数组。
  • 异常

    SecurityException如果安全管理器存在并且其SecurityManager.checkRead(java.lang.String)方法拒绝对该文件的读取访问
  • 例子

    以下示例显示java.io.File.list()方法的用法。
     
    package com.jc2182;
    import java.io.File;
    
    public class FileDemo {
       public static void main(String[] args) {      
          File f = null;
          String[] paths;
                
          try {    
          
             // create new file
             f = new File("c:/test");
                                     
             // array of files and directory
             paths = f.list();
                
             // for each name in the path array
             for(String path:paths) {
             
                // prints filename and directory name
                System.out.println(path);
             }
             
          } catch(Exception e) {
             // if any error occurs
             e.printStackTrace();
          }
       }
    }
    
    让我们编译并运行以上程序,这将产生以下结果-
     child_test
    child_test.txt