将jb6启动环境换成jdk1.4,这样你就可以获得想vc一样的响应速度.同时jdk1.4支持鼠标滚轮咯.刷屏也好多了. 
具体做法: 
将jb6/bin下面的jdk.conf,jbuild.conf 
[jdk.conf] 
# +-----------------------------------------------------+ 
# |                                                     | 
# |  This is the shared configuration file for the      | 
# |                      Win32 JDK                      | 
# |                                                     | 
# |   Do NOT make modifications without maintaining a   | 
# |      backup copy.  See config_readme.html for a     | 
# |      description of the recognized directives.      | 
# |                                                     | 
# +-----------------------------------------------------+ # Use the embedded JDK provided with JBuilder and 
# override the default heap growth / shrinkage rates 
#请指到你的jdk1.4的目录,这是我jdk1.4的相对目录 
javapath ../../jdk/bin/java 
vmparam -Xminf0.2 
vmparam -Xmaxf0.2 # Add the "tools" JAR to the path since the JDK doesn't 
# do so automatically 
#请指到你的jdk1.4的目录,这是我jdk1.4的相对目录 
addpath ../../jdk/lib/tools.jar # Force standard VM settings for all applications 
vmparam -Xverify:none # +-----------------------------------------------------+ 
# |                                                     | 
# |    Uncomment the following line if you are seeing   | 
# |    screen glitches while running JBuilder.  This    | 
# |  problem is especially common under Windows 95/98.  | 
# |                                                     | 
# +-----------------------------------------------------+ 
#vmparam -Dsun.java2d.noddraw # +-----------------------------------------------------+ 
# |                                                     | 
# |    Uncomment the following line if you are having   | 
# |   problems with your default file encoding.  This   | 
# |         problem is evident in some locales.         | 
# |                                                     | 
# +-----------------------------------------------------+ 
#vmparam -Dfile.encoding=ISO8859_1 
[jbuild.conf] 
# +-----------------------------------------------------+ 
# |                                                     | 
# | This is the configuration file for the JBuilder IDE | 
# |                                                     | 
# |   Do NOT make modifications without maintaining a   | 
# |      backup copy.  See config_readme.html for a     | 
# |      description of the recognized directives.      | 
# |                                                     | 
# +-----------------------------------------------------+ # Read the shared JDK definition 
include jdk.config # Tune this VM to provide enough headroom to work on large 
# applications 
vmparam -Xms8m 
vmparam -Xmx128m 
#此参数一定要加上,表示以客户端运行java程序. 
vmparam -client # Put the Lightweight AWT wrapper on the boot path 
#轻量级的awt组件 
addbootpath ../lib/lawt.jar 
#jdk1.4的awt组件,不知道有什么改善.感觉很慢.请大家试试看 
#addbootpath ../../jdk/jre/lib/jawt.jar # Add all JAR files located in the patch, lib and lib/ext directory 
addjars ../patch 
addjars ../lib 
addjars ../lib/ext # Activate the shell integration 
socket 8888 # Add all the configuration files located in the lib/ext directory 
includedir ../lib/ext # JBuilder needs to have access to the environment 
exportenv # Start JBuilder using the its main class 
mainclass com.borland.jbuilder.JBuilder
::::FAQ:::: 
对于一些按钮的中文问题可以这样解决: 
在:[jbuild.conf]加上 
vmparam -Dswing.useSystemFontSettings=false 
可以解决问题.另外建议使用meta风格.而不是用windows风格. 
对于编辑文件时候出现的方框,可以在用dialoginput字体,或者宋体. 
中文问题就完美解决了. 启动速度的确不是很快.你觉得vc启动的快么?! 
但是你编辑文件的时候非常快.窗口弹出快多了.键盘响应也快乐.把两个版本比较一下就知道了. 对于字体错位的问题请把highlight 里面的style一些关键字的bold属性去掉就可以完美解决了.  

解决方案 »

  1.   

    最简单的办法就是把JDK1.4直接安装到 %JBUILDER_HOME%/jdk1.3.1/ 目录下就可以了. 不过JDK1.4的JBuilder的菜单项目对中文支持不太好, 还是慎用.
      

  2.   

    Tools---Configure JDKS---JDK home path中设置成你的jdk1.4的目录就ok了
      

  3.   

    发现有错体的时候在改回来不就行罗,我这两三个月来都是这样过得啦。
    还有,jdk1.3版对一些东西支持不足,例如数字签名中的transform包,我同学就是用了1。3,结果一个完全正确的程序就是运行不起来,现在用1。4,一点问题都没有,还他白白浪费了一个多月的时间去疯狂的调试。
      

  4.   

    JDK.14 是J2SDK 1.4 吗?