JBOSS 6.0 乱码解决

JBoss启动时默认使用的是系统字符集,而某些应用程序对于系统默认的字符集会出现不兼容的情况,如:打印出来的数据都是乱码。对于这种情况,可以在JBoss启动时定制应用程序使用自己的字符集。

 

1、编辑JBOSS_HOME/bin/run.conf文件

 

 

#在文件的上部加入字符集(红色字体部分)

## -*- shell-script -*- ######################################################

##                                                                          ##

##  JBoss Bootstrap Script Configuration                                    ##

##                                                                          ##

##############################################################################

 

### $Id: run.conf 62747 2007-05-02 17:43:36Z [email protected] $

 

#

# This file is optional; it may be removed if not needed.

#

 

#

# Specify the maximum file descriptor limit, use "max" or "maximum" to use

# the default, as queried by the system.

#

# Defaults to "maximum"

#

#MAX_FD="maximum"

export LANG="zh_CN.GBK"

#

# Specify the profiler configuration file to load.

#

# Default is to not load profiler configuration file.

#

#PROFILER=""

......

 

2、重新运行JBoss,乱码问题就可以解决了。

 

注意:上面的操作只是举个例子,字符集的修改需要根据实际情况而定.

 

源文档 <http://tanyankai.iteye.com/blog/578800>

猜你喜欢

转载自jyao.iteye.com/blog/1613406