开始用EditPlus或JCreatorPro都可以
其实你搜索论坛很多这方面的贴子的

解决方案 »

  1.   

    我用ultraedit写一般的程序代码,复杂的程序才用jbuilder6,jbuilder6运行起来太慢了。
      

  2.   

    jdk是最基本的开发环境,jbuilder不过是基于它的一个ide,最终的编译及运行都是靠jdk来完成的。
      

  3.   

    jdk+JCreater
    JBuilder不适合初学
      

  4.   

    同病相怜,我也正为这个问题愁呢。JDK与SDK有什么样的联系?JDK 1.3怎么也找不到.还有怎样设置路径?
      

  5.   

    1。下载地址
    Java Tutorial
    http://java.sun.com/docs/books/tutorial/information/download.htmlJava(TM) 2 SDK, Standard Edition 1.4.0 For Windows
    ftp://ftp.java.sun.com/pub/j2sdk/1.4.0/poiu4rfpo4/j2sdk-1_4_0-win.exeJava(TM) 2 Runtime Environment, Standard Edition 1.4.0 For Windows
    ftp://ftp.java.sun.com/pub/j2sdk/1.4.0/poiu4rfpo4/j2re-1_4_0-win-i.exeJava(TM) 2 SDK, Standard Edition, Documentation 1.4.0
    ftp://ftp.java.sun.com/pub/j2sdk/1.4.0/poiu4rfpo4/j2sdk-1_4_0-doc.zipJava(TM) 2 SDK, Enterprise Edition 1.3.1 For Windows
    ftp://ftp.java.sun.com/pub/j2sdkee/AB2xD7Qr/j2sdkee-1_3_1-win.exeJava(TM) Web Services Developer Pack 1.0 For Windows
    ftp://ftp.java.sun.com/pub/jwsdp/kuyFBS5X/jwsdp-1_0-ea1-win.exe2。Editplus/urltraedit等,在华军软件上就有
    3。JavaPathhttp://www.csdn.net/Develop/read_article.asp?id=12699
    看一看这个贴子,希望对你有所帮助!
    祝你好运!
      

  6.   

    安装jdk
    设置classpath
    在doc下打javac,java如下信息
    Microsoft Windows 2000 [Version 5.00.2195]
    (C) 版权所有 1985-1998 Microsoft Corp.C:\>javac
    Usage: javac <options> <source files>
    where possible options include:
      -g                        Generate all debugging info
      -g:none                   Generate no debugging info
      -g:{lines,vars,source}    Generate only some debugging info
      -O                        Optimize; may hinder debugging or enlarge class file  -nowarn                   Generate no warnings
      -verbose                  Output messages about what the compiler is doing
      -deprecation              Output source locations where deprecated APIs are us
    ed
      -classpath <path>         Specify where to find user class files
      -sourcepath <path>        Specify where to find input source files
      -bootclasspath <path>     Override location of bootstrap class files
      -extdirs <dirs>           Override location of installed extensions
      -d <directory>            Specify where to place generated class files
      -encoding <encoding>      Specify character encoding used by source files
      -target <release>         Generate class files for specific VM version
    C:\>java
    Usage: java [-options] class [args...]
               (to execute a class)
       or  java -jar [-options] jarfile [args...]
               (to execute a jar file)where options include:
        -hotspot      to select the "hotspot" VM
        -server       to select the "server" VM
        -classic      to select the "classic" VM
                      If present, the option to select the VM must be first.
                      The default VM is -hotspot.    -cp -classpath <directories and zip/jar files separated by ;>
                      set search path for application classes and resources
        -D<name>=<value>
                      set a system property
        -verbose[:class|gc|jni]
                      enable verbose output
        -version      print product version and exit
        -showversion  print product version and continue
        -? -help      print this help message
        -X            print help on non-standard optionsC:\>
    安装editplus或者你可以用记事本就可以写了
    基本功就得这样练刚开始最好不要什么什么ide工具
    个人看法
    或者搜索以前的帖子会有很多高论
      

  7.   

    在window98下怎么配置path路径啊?
      

  8.   

    载autoexec.bat中
    path=%path%;[your jdk install dir\bin such as "c:\jdk\bin;"]
    classpath=c:\jdk\lib\tools.jar;c:\jdk\lib\rt.jar;