我写了一页小页,我想确定要求参数的特性。 这是我的法典:
String name= request.getParameter("hey");
UniversalDetector detector;
try{
detector = new UniversalDetector(null); //Exception is thrown here
detector.handleData(name.getBytes(), 0, name.length());
detector.dataEnd();
String encoding = "s";//detector.getDetectedCharset();
if (encoding != null) {
out.println("Detected encoding = " + encoding);
} else {
out.println("No encoding detected.");
}
detector.reset();
}catch(Throwable e3)
{
out.print("Error: Jasper Exception >>"+e3.getMessage()+"<br>");
}
在第二行(我提到)中,出现了一个例外。 渔获量中的错误是:
Error: Jasper Exception >>org/mozilla/universalchardet/prober/CharsetProber
我应该做些什么?