toos-->configure JDKs-->JDKhome path 改成1.4得就好了.另外我觉得这样做对速度并不会有多少提升,建议加内存吧

解决方案 »

  1.   

    :)HOHO,,JB对机器要求太高啦
      

  2.   

    JBUILDER都使用java语言编写的,所以比较慢。只有家内存了,好像没有别的办法。
      

  3.   

    jbuilder8比jbuider7快些,不过最主要的是内存要够大
      

  4.   

    CSDN上有这篇文章,你自己搜一下吧
      

  5.   

    环境: 
    256m内存/赛扬533 
    将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 当然java程序启动比较慢的,但是vc也不快阿.不过键盘响应快多了.新开窗口也快了很多.大家试试看把.::::FAQ:::: 
    对于一些按钮的中文问题可以这样解决: 
    在:[jbuild.conf]加上 
    vmparam -Dswing.useSystemFontSettings=false 
    可以解决问题.另外建议使用meta风格.而不是用windows风格. 
    对于编辑文件时候出现的方框,可以在用dialoginput字体,或者宋体. 
    中文问题就完美解决了. 启动速度的确不是很快.你觉得vc启动的快么?! 
    但是你编辑文件的时候非常快.窗口弹出快多了.键盘响应也快乐.把两个版本比较一下就知道了. 对于字体错位的问题请把highlight 里面的style一些关键字的bold属性去掉就可以完美解决了. 
      

  6.   

    jbiulder8速度快了很多,还是用他吧!他有全新的编译器!
      

  7.   

    环境: 
    256m内存/赛扬533 
    将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 当然java程序启动比较慢的,但是vc也不快阿.不过键盘响应快多了.新开窗口也快了很多.大家试试看把.::::FAQ:::: 
    对于一些按钮的中文问题可以这样解决: 
    在:[jbuild.conf]加上 
    vmparam -Dswing.useSystemFontSettings=false 
    可以解决问题.另外建议使用meta风格.而不是用windows风格. 
    对于编辑文件时候出现的方框,可以在用dialoginput字体,或者宋体. 
    中文问题就完美解决了. 启动速度的确不是很快.你觉得vc启动的快么?! 
    但是你编辑文件的时候非常快.窗口弹出快多了.键盘响应也快乐.把两个版本比较一下就知道了. 对于字体错位的问题请把highlight 里面的style一些关键字的bold属性去掉就可以完美解决了.