Conversion of .class to jar and .class to exe

后端 未结 5 969
星月不相逢
星月不相逢 2021-02-03 12:13

How do I convert:

  • class file to jar file using cmd?
  • class file to exe file?
  • jar file to exe?

Can I convert exe file to jar file?

5条回答
  •  灰色年华
    2021-02-03 12:45

    Create jar file using command line. Answer in http://download.oracle.com/javase/tutorial/deployment/jar/build.html

    Class to exe. Answer in http://www.javacoffeebreak.com/faq/faq0042.html

    Jar to exe. Answer in http://viralpatel.net/blogs/2009/02/convert-jar-to-exe-executable-jar-file-to-exe-converting.html

    Converting exe to a jar file is possible. But involves reverse engineering to discover what is in the exe, extract and do whatever you want with it. In my opinion, is not worth at all.

提交回复
热议问题