import java.io.File; public class Test1 { public static void main(String[] args) { String path="d:/"; File file=new File(path); File[] tempList = file.listFiles(); System.out.println("该目录下对象个数:"+tempList.length); for (int i = 0; i <
概述:我们在做项目时,经常需要从某个properties文件中读取properties文件中的值.现在我封装了一下方法,直接读取配置文件中的值. 代码如下所示: /** * Created by qinlinsen on 2017-07-03. * 本例只要是读取任何一个.properties文件的值.如果配置文件没有的话都设有默认值,从而避免了NullPointException. */ public class KSConfigurationTest { Properties propert