我有这个(剥离代码示例的HTML标签)函数,用CSV构建HTML表格,但每次尝试运行它时都会出现运行时错误,我不知道为什么。谷歌表示可能有一些编码错误,但我不知道如何改变它。
我的CSV以ANSI编码,包含ä,Ä,Ü,Ö等字符,但我无法控制编码或将来是否会发生变化。
此处发生错误:
Caused by: java.io.UncheckedIOException: java.nio.charset.MalformedInputException: Input length = 1
at java.io.BufferedReader$1.hasNext(Unknown Source)
at java.util.Iterator.forEachRemaining(Unknown Source)
at java.util.Spliterators$IteratorSpliterator.forEachRemaining(Unknown Source)
at java.util.stream.ReferencePipeline$Head.forEach(Unknown Source)
at testgui.Csv2Html.start(Csv2Html.java:121)
第121行
lines.forEach(line -> {
源码:
protected void start() throws Exception {
Path path = Paths.get(inputFile);
FileOutputStream fos = new FileOutputStream(outputFile, true);
PrintStream ps = new PrintStream(fos);
boolean withTableHeader = (inputFile.length() != 0);
try {
Stream<String> lines = Files.lines(path);
lines.forEach(line -> {
try {
String[] columns = line.split(";");
for (int i=0; i<columns.length; i++) {
columns[i] = escapeHTMLChars(columns[i]);
}
if (withTableHeader == true && firstLine == true) {
tableHeader(ps, columns);
firstLine = false;
} else {
tableRow(ps, columns);
}
} catch (Exception e) {
e.printStackTrace();
} finally {
}
});
} finally {
ps.close();
}
}
答案 0 :(得分:29)
您可以尝试使用Files.lines(Path path, Charset charset)
方法(javadocs)的lines
形式来使用正确的编码。
Here's a list支持的编码(无论如何,对于Oracle JVM)。 This post表示&#34; Cp1252&#34;是Windows ANSI。