java开发工具的一些问题
本人刚开始接触java,不知jdk开发工具怎么样?哪里可以下载啊,各位用jdk用得怎么样啊?它能开发出基于窗口的程序吗?现在大家用jbuider 4还是6啊?对于4它的系统要求是什么啊? 问题点数:20、回复次数:12Top
1 楼K4U()回复于 2002-03-30 07:58:12 得分 3
开始用EditPlus或JCreatorPro都可以
其实你搜索论坛很多这方面的贴子的Top
2 楼xexplorer(西风漂流)回复于 2002-03-30 08:14:19 得分 0
我用ultraedit写一般的程序代码,复杂的程序才用jbuilder6,jbuilder6运行起来太慢了。Top
3 楼xexplorer(西风漂流)回复于 2002-03-30 08:21:00 得分 3
jdk是最基本的开发环境,jbuilder不过是基于它的一个ide,最终的编译及运行都是靠jdk来完成的。Top
4 楼blueair(季候风)回复于 2002-03-30 09:38:38 得分 2
jdk+JCreater
JBuilder不适合初学Top
5 楼flyer_809(梦想成真)回复于 2002-03-31 07:17:29 得分 0
那请问我的机子上按装什么工具呢,?Top
6 楼mcwkm()回复于 2002-03-31 09:21:13 得分 0
同病相怜,我也正为这个问题愁呢。JDK与SDK有什么样的联系?JDK 1.3怎么也找不到.还有怎样设置路径?Top
7 楼Wanting(DSV)回复于 2002-03-31 09:24:42 得分 0
jpadpro也不错,太多了Top
8 楼icy_csdn()回复于 2002-03-31 09:59:39 得分 5
1。下载地址
Java Tutorial
http://java.sun.com/docs/books/tutorial/information/download.html
Java(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.exe
Java(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.exe
Java(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.zip
Java(TM) 2 SDK, Enterprise Edition 1.3.1 For Windows
ftp://ftp.java.sun.com/pub/j2sdkee/AB2xD7Qr/j2sdkee-1_3_1-win.exe
Java(TM) Web Services Developer Pack 1.0 For Windows
ftp://ftp.java.sun.com/pub/jwsdp/kuyFBS5X/jwsdp-1_0-ea1-win.exe
2。Editplus/urltraedit等,在华军软件上就有
3。JavaPath
http://www.csdn.net/Develop/read_article.asp?id=12699
看一看这个贴子,希望对你有所帮助!
祝你好运!
Top
9 楼icy_csdn()回复于 2002-03-31 10:00:28 得分 0
说明,下载地址由playuer提供Top
10 楼epowerlab(我是谁??)回复于 2002-03-31 10:51:19 得分 5
安装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 options
C:\>
安装editplus或者你可以用记事本就可以写了
基本功就得这样练
刚开始最好不要什么什么ide工具
个人看法
或者搜索以前的帖子
会有很多高论Top
11 楼flyer_809(梦想成真)回复于 2002-04-03 07:14:26 得分 0
在window98下怎么配置path路径啊?Top
12 楼dragonwind(北风)回复于 2002-04-03 07:45:36 得分 2
载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;
Top




