我想阅读一个csv文件,并在组合框中输入单词“ Jakarta”和“ Bandung”。这是输入
id,from,
1,Jakarta
2,Jakarta
5,Jakarta
6,Jakarta
10,Bandung
11,Bandung
12,Bandung
我设法得到了单词并将其放入组合框中,但是如您所见,文本文件本身包含很多单词“ Jakarta”和“ Bandung”,而我只想在组合框中仅显示两个单词。 / p>
这是我的临时代码,目前可以使用,但是效率低下,如果单词的种类更多,可能无法使用
public String location;
private void formWindowOpened(java.awt.event.WindowEvent evt) {
String csvFile = "C:\\Users\\USER\\Desktop\\Project Data.csv";
BufferedReader br = null;
LineNumberReader reader = null;
String line = "";
String cvsSplitBy = "-|\\,";
br = new BufferedReader(new FileReader(csvFile));
reader = new LineNumberReader(new FileReader(csvFile));
while ((line = br.readLine()) != null) {
// use comma as separator
String[] bookingdata = line.split(cvsSplitBy);
location = bookingdata[1];
ComboBoxModel model = cmb1.getModel();
int size = model.getSize();
cmb1.addItem(location);
for(int i = 1; i < size; i++){
if(model.getElementAt(i).equals("from")){
cmb1.removeItemAt(i);
}
else if(model.getElementAt(i).equals("Bandung")){
cmb1.removeItemAt(i);
}
for(int j = 2; j < i; j++){
if(model.getElementAt(j).equals("Jakarta")){
cmb1.removeItemAt(j);
}
}
}
}
}
其他人推荐了这种方法
boolean isEquals = false;
for(i = 0; i < a && !isEquals; i++){
isEquals = location.equals("Jakarta");
if(isEquals){
cmb1.addItem("Jakarta");
}
}
此代码无效。由于代码一旦添加“ Jakarta”就不会停止,而是在完成循环后停止。因此它仍然会在组合框中创建重复项。
我想知道是否还有其他代码可以尝试。谢谢
答案 0 :(得分:3)
尝试将所有单词首先放入集合中,然后将其添加到组合框中。 Set本身会照顾每个单词的确切出现一次。
类似这样的东西:
while ((line = br.readLine()) != null) {
// use comma as separator
String[] bookingdata = line.split(cvsSplitBy);
location = bookingdata[1];
ComboBoxModel model = cmb1.getModel();
int size = model.getSize();
// add all location in set and set will only allow distinct values
locationSet.add(location);
}
// after looping through all location put it in combobox
for(String location:locationSet)cmb1.addItem(location);
}
}
正如评论中所讨论的,集合是要保留唯一值。请在下面找到JShell的屏幕截图:
PS:这只是一个想法,可能需要根据要求进行一些修改。
-编辑-
如所讨论的,您似乎仍然缺少某些东西,我尝试在下面的代码段中编写并正常工作
package com.digital.core;
import java.util.HashSet;
import java.util.Set;
import javax.swing.JComboBox;
import javax.swing.JFrame;
public class Test {
public static void main(String[] args) {
JFrame jframe = new JFrame();
jframe.setSize(300, 300);
String data = "id,from,\n" +
"1,Jakarta\n" +
"2,Jakarta\n" +
"5,Jakarta\n" +
"6,Jakarta\n" +
"10,Bandung\n" +
"11,Bandung\n" +
"12,Bandung";
String[] dataArr = data.split("\n");
Set<String> locationSet = new HashSet<>();
for(String line:dataArr) {
locationSet.add(line.split(",")[1]);
}
JComboBox<String> comboBox = new JComboBox<>();
for(String location:locationSet)
comboBox.addItem(location);
jframe.add(comboBox);
jframe.setVisible(true);
}
}
答案 1 :(得分:0)
您可以创建一个ObservablArrayList
的字符串,并在读取CSV文件时检查列表中是否已包含该字符串:
ObservableList<String> locationsList = FXCollections.observableArrayList();
// Add your strings to the array as they're loaded, but check to
// make sure the string does not already exist
if (!locationsList.contains(location)) {
locationsList.add(location);
}
然后,在读取了整个文件并填充了列表之后,只需将组合框中的items
设置为该ObservableArrayList
。