java-获取.csv文件里的数据,并且获取文件夹下所含有对象的个数

		//如果是浏览器运行,就不需要写WebContent/ 了
		String path = "WebContent/config";
		File file = new File(path);
		File[] tempList = file.listFiles();
		System.out.println("该文件夹目录下对象的个数:" + tempList.length);
		
       		 /**
         	*  读取csv文件里的数据
         	*  因为要获取文件只是csv的文件,所以截取字符串,把文件类型获取出来,此处就是获取字符串的最后三个字符
         	*/
		for (int i = 0; i < tempList.length; i++) {
			if (tempList[i].isFile()) {
				System.out.println("文 件:" + tempList[i]);
				ArrayList csvList = new ArrayList(); // 用来保存数据
				String csvPath;
				csvPath = tempList[i].getPath();
				String type = csvPath.substring(csvPath.length() - 3, csvPath.length());
				System.out.println(type);
				if (type.equals("csv")) {
					CsvReader reader = new CsvReader(csvPath, ',', Charset.forName("SJIS")); // 一般用这个编码就可以了
					reader.readHeaders(); // 跳过表头
					while (reader.readRecord()) { // 逐行读入出表头的数据
						csvList.add(reader.getValues());
					}
					reader.close();
					for (int row = 0; row < csvList.size(); row++) {
						String cell = csvList.get(row)[0] + "," + csvList.get(row)[1]; // 取得第row行第0列的数据
						System.out.println(cell);
					}
				}
			} else if (tempList[i].isDirectory()) {
				System.out.println("文件夹:" + tempList[i]);
			}
         此截图就是文件所存放的路径

你可能感兴趣的:(java,csv文件,java,获取数据,文件夹对象个数)