作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我正在尝试编写一个程序,该程序允许我检索存储在 Excel 文件中的人员的详细信息。我决定使用电子邮件作为识别每个人的方式,因为它们是独一无二的。我的程序似乎无法运行,有人可以帮助我吗?
import java.io.BufferedReader;
import java.io.FileNotFoundException;
import java.io.FileReader;
import java.io.IOException;
public class Reader {
public static void main(String[] args) {
String csvFile = "Clients.csv";
BufferedReader br = null;
String line = "";
String cvsSplitBy = ",";
try {
br = new BufferedReader(new FileReader(csvFile));
while ((line = br.readLine()) != null) {
if(((br.readLine().split(cvsSplitBy))[2]).equals("email@gmail.com")){
String[] data = line.split(cvsSplitBy);
System.out.println("First Name: "+data[0]+" Last Name: "+data[1]+" Activity Level: "+data[7]);
}
}
} catch (FileNotFoundException e) {
e.printStackTrace();
} catch (IOException e) {
e.printStackTrace();
} finally {
if (br != null) {
try {
br.close();
} catch (IOException e) {
e.printStackTrace();
}
}
}
}
}
最佳答案
这是我修正后的代码,解决了我的问题:
String csvFile = "Clients.csv";
BufferedReader br = null;
String line = "";
String cvsSplitBy = ",";
try {
br = new BufferedReader(new FileReader(csvFile));
while ((line = br.readLine()) != null) {
String[] data = line.split(cvsSplitBy);
if(data[2].equals("samuelfairbrass@icloud.com")){
System.out.println("First Name: "+data[0]+" Last Name: "+data[1]+" Email: "+data[2]+" Phone Number: "+data[3]+" Activity Level: "+data[7]);
}
}
} catch (FileNotFoundException e) {
e.printStackTrace();
} catch (IOException e) {
e.printStackTrace();
} finally {
if (br != null) {
try {
br.close();
} catch (IOException e) {
e.printStackTrace();
}
}
}
关于java - 如何用Java读取Excel中的特定行?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/45311429/
我是一名优秀的程序员,十分优秀!