美文网首页
打包Jar,并运行,引入外部jar包

打包Jar,并运行,引入外部jar包

作者: 酒红色的小猫一 | 来源:发表于2017-09-20 17:53 被阅读0次

    1、new javaProject TestMsg
    2、引入jar包 new folder 存放jar包
    3、写好类 com.hcloud.TestMsg
    4、导出Jar File 到D盘下 testmsg.jar
    5、修改testmsg.jar中的META-INF中的MANIFEST.MF文件
    在 Manifest-Version: 1.0 换行追加 Main-class: com.hcloud.TestMsg 【注意class: 后必须有一个空格】
    6、由于引入其他jar包,还需换行追加 Class-Path: axiom-1.2.5.jar axis2-1.6.3.jar 【Path: 后空格 jar包与jar包之间空格】
    如下所示:
    Manifest-Version: 1.0
    Main-class: com.hcloud.TestMsg
    Class-Path: axiom-1.2.5.jar axis2-1.6.3.jar

    【保存在jar包中!!!!】
    7、打开cmd面板,d: 到d盘目录下
    执行 java -jar testmsg.jsr 即可

    相关文章

      网友评论

          本文标题:打包Jar,并运行,引入外部jar包

          本文链接:https://www.haomeiwen.com/subject/ylwosxtx.html