CSDN首页 空间 新闻 论坛 Blog 下载 读书 网摘 搜索 .NET Java 视频 接项目 求职 在线学习 买书 程序员 通知
花落谁家,你作主! 盛大widget设计大赛英雄榜
CSDN社区
搜索 收藏 打印 关闭
CSDN社区 >  Java >  J2SE / 基础类

java开发工具的一些问题

楼主flyer_809(梦想成真)2002-03-30 07:49:18 在 Java / J2SE / 基础类 提问

本人刚开始接触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

相关问题

  • java开发工具??????
  • java开发工具
  • java开发工具都用什么啊,
  • 几种JAVA开发工具之比较
  • 关于java的开发工具jdk,sdk?
  • 那种java开发工具比较好?
  • java在linux下的开发工具
  • 有点晕java开发工具IDE?
  • JAVA WEB开发工具构想
  • 在开发工具有VC、C++ BUILDER、VB、DELPHI、JAVA等,我们再搞开发工具是否值得?

关键词

  • jdk
  • vm
  • sdk
  • classpath
  • jbuilder
  • sun
  • source
  • poiu4rfpo
  • exejava
  • hotspot

得分解答快速导航

  • 帖主:flyer_809
  • K4U
  • xexplorer
  • blueair
  • icy_csdn
  • epowerlab
  • dragonwind

相关链接

  • CSDN Java频道
  • Java类图书
  • Java类源码下载

广告也精彩

反馈

请通过下述方式给我们反馈
反馈
提问
网站简介|广告服务|VIP资费标准|银行汇款帐号|网站地图|帮助|联系方式|诚聘英才|English|问题报告
北京创新乐知广告有限公司 版权所有, 京 ICP 证 070598 号
世纪乐知(北京)网络技术有限公司 提供技术支持
Copyright © 2000-2008, CSDN.NET, All Rights Reserved
GongshangLogo