码迷,mamicode.com
首页 > 其他好文 > 详细

NullPointerException

时间:2016-05-06 20:24:55      阅读:107      评论:0      收藏:0      [点我收藏+]

标签:

 1 import java.io.File;
 2 public class TestFile {
 3     public static void main(String[] args)
 4     {
 5 
 6         File file = new File("C:\\testFile");
 7         
 8         if(!file.exists())
 9         {
10             
11             System.out.println("directory is empty");
12 //            return; //结束对当前这个函数的调用,并跳出这个函数体
13         }
14         
15         File[] fileList = file.listFiles();
16         
17         System.out.println(fileList.length);
18 
19         
20     }
21 
22 }

Console 结果:

directory is empty
Exception in thread "main" java.lang.NullPointerException
    at LinkedList.TestFile.main(TestFile.java:17)

NullPointerException

标签:

原文地址:http://www.cnblogs.com/limeina/p/5466942.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!