You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
64 lines
1.4 KiB
64 lines
1.4 KiB
package de.superx.servlet; |
|
|
|
import java.util.LinkedList; |
|
import java.util.List; |
|
|
|
public class CSVResultReport { |
|
private int rowCount = 1; |
|
private int errorCount = 0; |
|
private List messages = new LinkedList(); |
|
private String colnames=""; |
|
|
|
public String getColnames() { |
|
return colnames; |
|
} |
|
|
|
public void setColnames(String colnames) { |
|
this.colnames = colnames; |
|
} |
|
|
|
public int getRowCount() { |
|
return rowCount; |
|
} |
|
|
|
public List getMessages() { |
|
return messages; |
|
} |
|
|
|
public void incError(String error) { |
|
messages.add(error); |
|
errorCount++; |
|
} |
|
|
|
public void incRowCount() { |
|
rowCount++; |
|
|
|
} |
|
|
|
public int getErrorCount() { |
|
return errorCount; |
|
} |
|
public String resultToHtml() |
|
{ |
|
StringBuffer buf = new StringBuffer( |
|
de.superx.servlet.SuperXManager.htmlPageHead("Erfolg")+"<h3 align='center'> Import erfolgreich</h3>"); |
|
|
|
buf.append("<p><font color='green'>" + (getRowCount()-1)+" Datensätze importiert" |
|
+ "</font></p>"); |
|
|
|
buf.append("</body></html>"); |
|
return buf.toString(); |
|
} |
|
|
|
public String errorsToHtml() { |
|
StringBuffer buf = new StringBuffer( |
|
de.superx.servlet.SuperXManager.htmlPageHead("Fehler")+"<html><head><title>Fehler</title></head><body> <h3 align='center'> Es sind Probleme aufgetreten</h3>"); |
|
for (int i = 0; i < getErrorCount() && i < 50; i++) { |
|
buf.append("<p><font color='red'>" + getMessages().get(i) |
|
+ "</font></p>"); |
|
} |
|
buf.append("</body></html>"); |
|
return buf.toString(); |
|
} |
|
|
|
} |