赞
踩
本文实例讲述了linux环境下java程序打包成简单的hello world输出jar包。分享给大家供大家参考,具体如下:
1. linux必须已安装java环境,测试
#javac -version
javac 1.8.0_20
说明java环境已安装好了
2. 建立目录helloworld,在目录下建立helloworld.java文件
#cd ~
~# mkdir helloworld
~# cd helloworld
~/helloworld# vi helloworld.java
helloworld.java内容如下
public class helloworld {
public static void main(String[] args) {
System.out.println("Hello World!!");
}
}
把helloworld.java 打包成可执行的jar
~/helloworld# javac helloworld.java
~/helloworld# ls
~/helloworld# echo Main-class: helloworld > manifest.txt
~/helloworld# ls
~/helloworld# cat manifest.txt
~/helloworld# jar cvfm hello.jar manifest.txt helloworld.class
屏幕显示如下打包信息:
运行hello.jar文件
~/helloworld# ls
~/helloworld# java -jar hello.jar
hello world!!
希望本文所述对大家java程序设计有所帮助。
Copyright © 2003-2013 www.wpsshop.cn 版权所有,并保留所有权利。