解決辦法:
修改oracle使用者的環境變數 檔案。加yvxnvakuuk入nls_lang="simplified chinese_china.al32utf8"; export nls_lang
複製** **如下:
[oracle@rhel6r4 ~]$ vi .bash_profile
# .bash_profile
# get the aliases and functions
if [ -f ~/.bashrc ]; then
. ~/.bashrc
fi# user specific environment and startup programs
path=$path:$home/bin
export path
# oracle settings
tmp=/tmp; export tmp
tmpdir=$tmp; export tmpdir
oracle_hostname=rhel6r4; export o程式設計客棧racle_hostname
oracle_unqname=mydb; export oracle_unqname
oracle_base=/u01/程式設計客棧oracle; export oracle_base
oracle_home=$oracle_base/product/11gr2/db; export oracle_home
oracle_sid=mydb; export oracle_sid
path=/usr/sbin:$path; export path
path=$oracle_home/bin:$path; export path
ld_library_path=$oraclewww.cppcns.com_home/lib:/lib:/usr/lib; export 程式設計客棧ld_library_path
classpath=$oracle_home/jlib:$oracle_home/rdbms/jlib; export classpath
nls_lang="simplified chinese_china.al32utf8"; export nls_lang
[oracle@rhel6r4 ~]$ source .bash_profile
中文可正常顯示
複製** **如下:
[oracle@rhel6r4 ~]$ env|grep lang
nls_lang=simplified chinese_china.al32utf8
lang=en_us.utf-8
本文標題: oracle中文亂碼的解決方法
本文位址:
linux中文亂碼解決方法
在使用centos 系統時,安裝的時候可能你會遇到英文的centos系統,在這中情況下安裝centos系統時是預設安裝 即英文 安裝完畢後,出現的各種中文亂碼。那麼,我們如何解決這種問題呢。一 centos系統訪問 g.cn 發現中文亂碼。於是用以前的方式 yum y install fonts c...
Android中文亂碼解決方法
android中文亂碼解決方法 在手機與pc之間進行socket或http通訊時,常常會出現中文亂碼問題,其主要原因在於手機端字元編碼預設為utf 8,而伺服器pc端預設為gbk或gb2312。手機到pc的資訊編碼傳遞 接收 解碼顯示的過程為 手機端以utf 8編碼資訊 包括漢字 寫入socket輸...
Tomcat Mysql中文亂碼解決方法
在tomcat mysql開發中,中文亂碼問題是乙個比較常見的問題,在查詢網路相關資料後,我把我的實踐經驗總結於本文。本文主要解決頁面亂碼和資料庫亂碼2個問題。1 頁面亂碼。1 編寫乙個過濾器。public class setcharacterencodingfilter implements fi...