中海达gps怎么校点:新手请教JAVA安装问题

来源:百度文库 编辑:杭州交通信息网 时间:2024/04/26 14:07:04
我安装的是j2sdk1.5并且设置了环境变量PATH
C:\Program Files\Java\j2sdk1.5.0\bin
并且在DOC下运行javac出现以下内容:

Microsoft Windows XP [版本 5.1.2600]
(C) 版权所有 1985-2001 Microsoft Corp.

C:\Documents and Settings\yujun>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
-nowarn Generate no warnings
-verbose Output messages about what the compiler is doing
-deprecation Output source locations where deprecated APIs are u
sed
-classpath <path> Specify where to find user class files
-cp <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
-endorseddirs <dirs> Override location of endorsed standards path
-d <directory> Specify where to place generated class files
-encoding <encoding> Specify character encoding used by source files
-source <release> Provide source compatibility with specified release

-target <release> Generate class files for specific VM version
-version Version information
-help Print a synopsis of standard options
-X Print a synopsis of nonstandard options
-J<flag> Pass <flag> directly to the runtime system

C:\Documents and Settings\yujun>

请问我还得怎么做?我还需要安装什么软件?
如果是的话,给我下载地址和详细的安装方法

JDK已经安装了,环境变量也配置了,已经可以写代码并编译执行了
估计你是想要一些java编译工具。
建议netbeans或者eclipse,毕竟这两个都是开源的,初学的话用JCreator也不错。网上搜一下很多下载站点的。安装也很简单,就是setup,jdk他会自动找到的。

这说明已经安装正确了。上面那些内容是说用javac这个命令需要带哪些参数以及这些参数是干什么的。