作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
public void openReport() {
try {
HashMap params = new HashMap();
params.put("aapor", 19);
JasperReport jasperReport1 = JasperCompileManager.compileReport("C:/Users/emidemi.emidemi-PC/Documents/NetBeansProjects/FleetManager/src/FleetManager/newReport5.jasper");
JasperPrint jasperPrint1 = JasperFillManager.fillReport(jasperReport1, params, conn.getConn());
JRViewer viewer = new JRViewer(jasperPrint1);
} catch (Exception e) {
System.out.println(e.getMessage());
}
}
上面是我的脚本。
这是我的错误:
com.sun.org.apache.xerces.internal.impl.io.MalformedByteSequenceException: Invalid byte 1 of 1-byte UTF-8 sequence.
BUILD SUCCESSFUL (total time: 7 seconds)
有谁知道为什么会发生这种情况以及如何解决它?
最佳答案
这是字符编码的问题。您是否尝试过更改报告开头的编码行?
即对于中欧字母表,更改:
<?xml version="1.0" encoding="UTF-8"?>
通过
<?xml version="1.0" encoding="CP1250"?>
这里有不同字符编码标准的列表: http://en.wikipedia.org/wiki/Character_encoding#Common_character_encodings
希望它有用
关于java - JasperReports API : calling JasperCompileManager. compileReport (String) 方法引发了 MalformedByteSequenceException 异常,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/9988935/
public void openReport() { try { HashMap params = new HashMap(); params.put("aap
我是一名优秀的程序员,十分优秀!