我需要获取少量值,然后将所有这些值写入csv文件。为此,我将值添加到Java Arraylist并写入csv文件。但是,当我这样做时,它将记录写入CSV但在记录之间有空行。不知道为什么会出现这个问题。
1,abc,fname,lname,email,log
1,abc1,fname1,lname1,email1,log1
1,abc2,fname2,lname2,email2,log2
1,abc3,fname3,lname3,email3,log3
1,abc4,fname4,lname4,email4,log4
这是我的代码。请告诉我这段代码有什么问题:
public StringBuilder fetchUsers() {
ArrayList<String> users = null;
StringBuilder sb1 = new StringBuilder();
try {
client = getMyClient();
if (client != null) {
UserList usersList = getUsers();
if (usersList.totalCount != 0 && usersList.totalCount >= 1) {
System.out.println("usersList.totalCount ----->"
+ usersList.totalCount);
for (KalturaUser user : usersList.objects) {
users = new ArrayList<String>();
if (user != null) {
String action = null;
String userFullName = null;
String modifiedName = null;
String firstName = user.firstName;
if (user.id != null) {
String cnum = getUserUniqueId(user.id);
String userRole = getUserRole(user.id);
if (cnum != null || userRole != null) {
action = validateCnum(cnum, userRole);
if (!action.equals("3")) {
users.add(action);
users.add(cnum);
if (firstName != null
&& firstName.contains("@")) {
user.email = firstName;
userFullName = getUserNames(user.id);
firstName = userFullName;
}
users.add(firstName);
users.add(user.lastName);
users.add(user.email);
users.add(userRole);
}
}
}
}
allUsers.add(users);
}
}
}
} catch (MyException e) {
// TODO Auto-generated catch block
e.printStackTrace();
} catch (IOException e) {
// TODO Auto-generated catch block
e.printStackTrace();
} catch (ParserConfigurationException e) {
// TODO Auto-generated catch block
e.printStackTrace();
} catch (SAXException e) {
// TODO Auto-generated catch block
e.printStackTrace();
}
writeToCSV();
return sb1;
}
private void writeToCSV() {
FileWriter fileWriter = null;
CSVPrinter csvFilePrinter = null;
CSVFormat csvFileFormat = CSVFormat.DEFAULT.withRecordSeparator(System
.getProperty("line.separator"));
try {
fileWriter = new FileWriter("C:/users.csv");
csvFilePrinter = new CSVPrinter(fileWriter, csvFileFormat);
csvFilePrinter.printRecord(USER_COLUMNS);
for (List<String> rowData : allUsers) {
csvFilePrinter.printRecord(rowData);
}
} catch (Exception e) {
logger.error(e.getStackTrace());
} finally {
try {
fileWriter.flush();
fileWriter.close();
csvFilePrinter.close();
} catch (IOException e) {
logger.error("Error while flushing/closing fileWriter/csvPrinter!");
}
}
}
答案 0 :(得分:5)
此:
allUsers.add(users);
应位于if (user != null)
和所有子ifs
这样的事情:
if (user != null) {
...
if (user.id != null) {
...
if (cnum != null || userRole != null) {
....
if (!action.equals("3")) {
users = new ArrayList<String>();
....
allUsers.add(users);
}
}
}
}
一般情况下,只有在要添加内容时才应创建数组并将其添加到allUsers