Hibernatetools编码格式的问题
最近在用到Hibernatetools生成java文件的时候发现中文乱码的问题,看了下官方文档,怎么也没找到关于编码的问题,没办法,从jboss给的svn上把源码下下来研究一下http://anonsvn.jboss.org/repos/hibernate/tags/TOOLS_3_2_4_GA/tools/src/java/,看了一番之后,在TemplateProducer.java这个类中,发现了写文件的方法:
public void produce(Map additionalContext, String templateName, File destination, String identifier, String fileType, String rootContext) {
?? ????
?? ???? String tempResult = produceToString( additionalContext, templateName, rootContext );
?? ????
?? ???? if(tempResult.trim().length()==0) {
?? ???? ??? log.warn("Generated output is empty. Skipped creation for file " + destination);
?? ???? ??? return;
?? ???? }
?? ???? FileWriter fileWriter = null;
?? ???? try {
?? ???? ???
?? ???? ??? th.ensureExistence( destination );???
?? ?????
?? ???? ??? ac.addFile(destination, fileType);
?? ???? ??? log.debug("Writing " + identifier + " to " + destination.getAbsolutePath() );
?? ???? ??? fileWriter = new FileWriter(destination);
??????????? fileWriter.write(tempResult);?? ??? ??? ?
?? ???? }
?? ???? catch (Exception e) {
?? ???? ??? throw new ExporterException("Error while writing result to file", e);?? ?
?? ???? } finally {
?? ???? ??? if(fileWriter!=null) {
?? ???? ??? ??? try {
?? ???? ??? ??? ??? fileWriter.flush();
?? ???? ??? ??? ??? fileWriter.close();
?? ???? ??? ??? }
?? ???? ??? ??? catch (IOException e) {
?? ???? ??? ??? ??? log.warn("Exception while flushing/closing " + destination,e);
?? ???? ??? ??? }?? ??? ??? ??? ?
?? ???? ??? }
?? ???? }
?? ????
?? ?}
终于明白了为什么他不支持编码了,注意这两句
fileWriter = new FileWriter(destination);
fileWriter.write(tempResult);???
jdk1.6文档中是这么定义FileWriter的
?
用来写入字符文件的便捷类。此类的构造方法假定默认字符编码和默认字节缓冲区大小都是可接受的。要自己指定这些值,可以先在 FileOutputStream 上构造一个 OutputStreamWriter。
也就是说FileWriter采用默认的与平台有关的编码,查看操作系统编码如下:
String encoding = System.getProperty("file.encoding");
System.out.println("Default System Encoding:" + encoding);
我的电脑显示的是GBK,问题可能出在这,至于为什么,我就不知道了。解决办法
1.等Hibernatetools出新版本
2.改Hibernatetools源码
3.自己写自动生成工具
4.写一个自动文件格式转化的工具类FileEncodingUtils,在调用hibernatetools之后再调用这个转化类
2的改发
OutputStreamWriter out = new OutputStreamWriter(new FileOutputStream(destination),"UTF-8");
out.write(tempResult);
?
本人采用的是方法4.
?
另外提供Hibernatetools最新的源码,未改过的啊。
?
?