JAVA程序的運(yùn)行必須要安裝JAVA RUNTIME ,也就是運(yùn)行所需要的環(huán)境;我們可以通過安裝JRE 或者JDK 所獲得;如果我們只是應(yīng)用不是開發(fā),只下載JRE 的包就足夠; JDK包里面也包含JRE;本文以JRE的安裝為例;JRE中還包括瀏覽器所需要的JAVA插件;
一、下載JRE;
http://ftp.isu.edu.tw
根據(jù)自己的機(jī)器來下載對(duì)應(yīng)的版本,我的機(jī)器是 32位的X86機(jī),所以只能下載 linux32目錄中的 jre-1_5_0_04-linux-i586.bin;如果您是X86-64位機(jī),就下載相對(duì)的;
二、解壓和配置;
1、釋放軟件包;
[root@localhost sunjava]# ls
jre-1_5_0_04-linux-i586.bin
[root@localhost sunjava]# sh jre-1_5_0_04-linux-i586.bin
Do you agree to the above license terms? [yes or no] yes
[root@localhost sunjava]# ls
jre1.5.0_04 jre-1_5_0_04-linux-i586.bin
2、配置JRE ;
1)把jre1.5.0_04 的目錄移到 /usr/lib目錄中
[root@localhost sunjava]# mv jre1.5.0_04 /usr/lib/jre154
2)配置環(huán)境變量;
在當(dāng)前用戶的.bashrc 中加入三行,內(nèi)容如下:
JAVA_HOME=/usr/lib/jre154
JAVA_BIN=/usr/lib/jre154/bin
export JAVA_HOME JAVA_BIN
您可以用gedit 或 vi 來編輯.bashrc 文件;
[root@localhost sunjava]# gedit ~/.bashrc
[root@localhost sunjava]# vi ~/.bashrc
3)加一個(gè)字體simsun.ttf ;
在/usr/lib/jre154/lib/fonts中建一個(gè)目錄 fallback ,然后拷字體 simsun.ttf 到這個(gè)目錄,或者把simsun.ttc 復(fù)制成simsun.ttf也行,然后放到這個(gè)目錄;
[root@localhost ~]# mkdir /usr/lib/jre154/lib/fonts/fallback
4)安裝java plugins ;讓瀏覽器也能支持java 程序;
比如我用 firefox 瀏覽器,則為libjavaplugin_oji.so建一個(gè)鏈接到firefox 相對(duì)應(yīng)的目錄中的plugins 目錄中,其它瀏覽器同理;
[root@localhost plugins]# cd /usr/lib/firefox-1.0.6/plugins/
[root@localhost plugins]# ln -s /usr/lib/jre154/plugin/i386/ns7/libjavaplugin_oji.so .
5)JAVA控制臺(tái)的調(diào)用;
[beinan@localhost ~]# /usr/lib/jre154/bin/ControlPanel