Home Java File OP
Post
Cancel

Java File OP

读取CSV文件

依赖

1
2
3
4
5
<dependency>
	<groupId>net.sf.opencsv</groupId>
	<artifactId>opencsv</artifactId>
	<version>2.3</version>
</dependency>

读取文件

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
 public static void main(String[] args)  {
  	String name = "C:/Users/Desktop/suggest.csv";
  	 Reader inputStreamReader;
	try {
		inputStreamReader = new InputStreamReader(new FileInputStream(new java.io.File(name)));
		 CSVReader reader = new CSVReader(inputStreamReader); 
		   String[] nextLine;  
		  while (( nextLine = reader.readNext()) != null)  {
			  for (int i = 0; i < nextLine.length; i++) {
				System.out.println(nextLine[i]);
			}
		  }
	} catch (FileNotFoundException e) {
		e.printStackTrace();
	}catch (IOException e) {
		e.printStackTrace();
	}
}
This post is licensed under CC BY 4.0 by the author.