Usage: java [-options] class [args]
(to execute a class)
or java [-options] -jar jarfile [args]
(to execute a jar file)
where options include:
-client to select the "client" VM
-server to select the "server" VM
-hotspot is a synonym for the "client" VM [deprecated]
The default VM is client
-cp <class search path of directories and zip/jar files>
-classpath <class search path of directories and zip/jar files>
A ; separated list of directories, JAR archives,
and ZIP archives to search for class files
-D<name>=<value>
set a system property
-verbose[:class|gc|jni]
enable verbose output
-version print product version and exit
-version:<value>
require the specified version to run
-showversion print product version and continue
-jre-restrict-search | -jre-no-restrict-search
include/exclude user private JREs in the version search
- -help print this help message
-X print help on non-standard options
-ea[:<packagename>|:<classname>]
-enableassertions[:<packagename>|:<classname>]
enable assertions
-da[:<packagename>|:<classname>]
-disableassertions[:<packagename>|:<classname>]
disable assertions
-esa | -enablesystemassertions
enable system assertions
-dsa | -disablesystemassertions
disable system assertions
-agentlib:<libname>[=<options>]
load native agent library <libname>, eg -agentlib:hprof
see also, -agentlib:jdwp=help and -agentlib:hprof=help
-agentpath:<pathname>[=<options>]
load native agent library by full pathname
-javaagent:<jarpath>[=<options>]
load Java programming language agent, see javalanginstrume
-splash:<imagepath>
show splash screen with specified image使用eclipse生成文档(javadoc)主要有三种方法:
1,在项目列表中按右键,选择Export(导出),然后在Export(导出)对话框中选择java下的javadoc,提交到下一步。
在Javadoc Generation对话框中有两个地方要注意的:
javadoc command:应该选择jdk的bin/javadocexe
destination:为生成文档的保存路径,可自由选择。
按finish(完成)提交即可开始生成文档。
2,用菜单选择:File->Export(文件->导出),
剩下的步骤和第一种方法是一样的。
3,选中要生成文档的项目,然后用菜单选择,
Project->Generate Javadoc直接进入Javadoc Generation对话框,剩余的步骤就和第一种方法在Javadoc Generation对话框开始是一样的。1、lib目录下:
spring-aop-422RELLASE
一直到 spring-web-422RELEASE-sources
后面webmvc暂时不要,中间排除:javadoc,sources后缀的jar包
不排除:RELLASE都要
2、E:\SSH框架\struts2330-showcase\WEB-INF\lib
这个目录找2个jar包:commons-logging-113 :这样就有4个commons包了
struts2-spring-plugin-2330 :这个是struts连接spring的包。
右击你的项目--》Export--》java--》javadoc--》next出现如下页面
点击上图的Configure按钮,进入到安装jdk的目录,选择bin目录先的javadocexe文件。点击next到下一步,再点击next到达
在文本框中输入如图所示的“-encoding UTF-8 -charset UTF-8”点击finish。完成 *** 作。(如果你项目的编码是utf-8的话。默认应该是GBK。
注意事项,安卓需要将对应的androidjar包导入到项目中才能够成功的生成javadoc
在Eclipse一个项目中加入jar包,然后右键jar包,选properties,再选javadoc,把你jar包在硬盘上的位置加进去,就可以读啦。但是建议看文档,jar的源代码不容易看懂。先会用,再去研究开发者的思路和原理Eclipse中, 像这样,同时指定source、doc<classpathentry kind="var" path="M2_REPO/commons-logging/commons-logging/111/commons-logging-111jar" sourcepath="M2_REPO/commons-logging/commons-logging/111/commons-logging-111-sourcesjar">
<attributes>
<attribute name="javadoc_location" value="jar:file:M2_REPO//commons-logging/commons-logging/111/commons-logging-111-javadocjar!/"/>
</attributes>
</classpathentry>
如果通过maven生成,一般会自动写成这样的。手动的话,就自己添加一下。jdk安装好配置环境变量后,系统就承认了 java,javac等命令,当编译好java文件,就可以在开始——运行——cmd的dos系统下运用指定命令运行java文件。
JDK 是整个Java的核心,包括了Java运行环境,Java工具和Java基础的类库。
JDK包含的基本组件包括:
javac – 编译器,将源程序转成字节码
jar – 打包工具,将相关的类文件打包成一个文件
javadoc – 文档生成器,从源码注释中提取文档
jdb – debugger,查错工具
java – 运行编译后的java程序(class后缀的)
appletviewer:小程序浏览器,一种执行HTML文件上的Java小程序的Java浏览器。 Javah:产生可以调用Java过程的C过程,或建立能被Java程序调用的C过程的头文件。 Javap:Java反汇编器,显示编译类文件中的可访问功能和数据,同时显示字节代码含义。 Jconsole: Java进行系统调试和监控的工具
总之,jdk并不是一个应运软件,并不能从哪里运行。编译时在任何可输入文本的软件中均可(通常用txt记事本编译),编译好后改名java文件,在dos系统中用 javac命令编译连接 java命令 运行。jar包就是类生成的class文件,你引入jar包则可以调用里面一些类中的方法
java api:就是java提供的一些类方法的解释文档
javadoc是Sun公司提供的一个技术,它从程序源代码中抽取类、方法、成员等注释形成一个和源代码配套的API帮助文档。
欢迎分享,转载请注明来源:内存溢出
评论列表(0条)