Exception in thread "main" java.lang.NullPointerException
at java.text.SimpleDateFormat.<init>(SimpleDateFormat.java:494)
org.dom4j.DocumentException:
Nested exception:
关于以上异常造成的错误及查找方式!!
1,一个时间转换异常,我用的是
DateLocaleConverter dlc=new DateLocaleConverter();
dlc.convert(this.birthday,"yyyy-MM-dd");
关于此次异常出现,导入错误的包造成DateLocaleConverte,
改正:
错误的import com.sun.org.apache.commons.beanutils.locale.converters.DateLocaleConverter;
正确地:import org.apache.commons.beanutils.locale.converters.DateLocaleConverter;,
2,关于org.dom4j.DocumentException: 、Nested exception:
关于以上异常:
web项目中,myeclipse8.5环境下 编码为 UTF-8或者gbk、xml、format.setEncoding("utf-8")、 request、response以及 jsp都统一编码, 未能 解决异常处理!!
经过多次测试:处理办法为:在myeclipse8.5环境下,设置编码为gbk或者UTF-8都可以,
xmlencoding=“gb2312” 与 format.setEncoding(“gb2312”); 为前提操作条件,jsp以及servlet设置编码为UTF-8 方能操作成功, 其他情况失败!!
{OutputFormat format= OutputFormat.createPrettyPrint();format.setEncoding("gb2312");XMLWriter writer=new XMLWriter(new FileOutputStream(filepath),format)};
具体原因未能找出! 留待解决!!不知是否与dom4j jar包、 操作系统 或者 tomcat等有关。
原文链接:https://www.f2er.com/xml/299428.html