String fileEncode = System.getProperty( "file.encoding" );
File outFile = new File(ConfHelper.getConf( "OperLogPath" ));
OutputStreamWriter ow = new OutputStreamWriter(
new FileOutputStream(outFile, true ), fileEncode);
String logStr = "[" DateUtil.formatDate( new Date())
"]用户Id=" loginUser.getId() ",用户名称="
loginUser.getUsername() " 修改彩绣类别 typeid="
typeid " 为 [catgery=" catgery ",restype="
restype ",ressubtype=" ressubtype "]rn" ;
ow.write( new String(logStr.getBytes( "UTF-8" ), fileEncode));
ow.close();
注意到有些资料说还有一种解决方案就是,修改linux的系统编码字符集:
修改/etc/sysconfig/i18n 这个文件
将LANG="zh_CN.UTF-8"修改为:
LANG="zh_CN.GBK"
保存并关闭,运行下面的命令使配置生效:
shell> source /etc/sysconfig/i18n但是,这就完全改变了服务器的编码,可能会引起其它效应,应慎重.我没有尝试,有需要的话,可以一试.
For exapmle:
在linux终端进行编译时,出现以下乱码:
Analysis:
Solutions:
第一种:
第二种:
PS: