|
@@ -58,6 +58,7 @@ public class ImportResultTxtHandler { |
|
|
int lineNo = 0; // count overall lines
|
|
|
int lineNo = 0; // count overall lines
|
|
|
int errNo = 0; // count unparsable lines
|
|
|
int errNo = 0; // count unparsable lines
|
|
|
int dupNo = 0; // count duplicates
|
|
|
int dupNo = 0; // count duplicates
|
|
|
|
|
|
boolean header = false;
|
|
|
try {
|
|
|
try {
|
|
|
input = new FileReader(resultPath);
|
|
|
input = new FileReader(resultPath);
|
|
|
|
|
|
|
|
@@ -69,7 +70,10 @@ public class ImportResultTxtHandler { |
|
|
lineNo++;
|
|
|
lineNo++;
|
|
|
String[] tokens = myLine.split(",");
|
|
|
String[] tokens = myLine.split(",");
|
|
|
if(tokens.length > 0) {
|
|
|
if(tokens.length > 0) {
|
|
|
if(tokens[0].equals("id")) continue; // header line
|
|
|
|
|
|
|
|
|
if(tokens[0].equals("id")) {
|
|
|
|
|
|
header = true;
|
|
|
|
|
|
continue; // header line
|
|
|
|
|
|
}
|
|
|
try {
|
|
|
try {
|
|
|
boolean exists = !ids.add(Integer.parseInt(tokens[0]));
|
|
|
boolean exists = !ids.add(Integer.parseInt(tokens[0]));
|
|
|
if(exists) {
|
|
|
if(exists) {
|
|
@@ -90,7 +94,8 @@ public class ImportResultTxtHandler { |
|
|
if(ids != null) {
|
|
|
if(ids != null) {
|
|
|
MessageBox msgBox = new MessageBox(shell, SWT.ICON_INFORMATION | SWT.OK);
|
|
|
MessageBox msgBox = new MessageBox(shell, SWT.ICON_INFORMATION | SWT.OK);
|
|
|
StringBuilder msg = new StringBuilder();
|
|
|
StringBuilder msg = new StringBuilder();
|
|
|
int thingsNo = lineNo - errNo - dupNo - 1;
|
|
|
|
|
|
|
|
|
int thingsNo = lineNo - errNo - dupNo;
|
|
|
|
|
|
if(header) thingsNo -= 1;
|
|
|
msg.append("Parsing successful. Found ").append(Integer.toString(thingsNo)).append(" things.");
|
|
|
msg.append("Parsing successful. Found ").append(Integer.toString(thingsNo)).append(" things.");
|
|
|
if(errNo > 0) {
|
|
|
if(errNo > 0) {
|
|
|
msg.append("\n\rSkipped ").append(Integer.toString(errNo)).append(" line(s).");
|
|
|
msg.append("\n\rSkipped ").append(Integer.toString(errNo)).append(" line(s).");
|
|
|