-1
我想從CSV文件加載數組。這裏是代碼Find non-duplicate items between two arrays with JavaCSV文件到java中的數組。有任何想法嗎?
這項工作?
ReadFile file = new ReadFile(file_name);
String[ ] aryLines = file.OpenFile();
我想從CSV文件加載數組。這裏是代碼Find non-duplicate items between two arrays with JavaCSV文件到java中的數組。有任何想法嗎?
這項工作?
ReadFile file = new ReadFile(file_name);
String[ ] aryLines = file.OpenFile();
試試這個閱讀CSV: http://www.mkyong.com/java/how-to-read-and-parse-csv-file-in-java/
然後在列表A和B刪除重複,你可能需要使用一組(非重複的集合)
List<Integer> A = readFromFile("a.csv"); // Arrays.asList(1,2,4)
List<Integer> B = readFromFile("b.csv"); // Arrays.asList(1,2,3)
Set<Integer> set = new TreeSet<Integer>() // will sort for you as well
set.addAll(A)
set.addAll(B)
做這項工作? –
使用Jackson CsvMapper – tom
如何閱讀CSV或複製元素是什麼問題,因爲我沒有看到你的工作 –