将 .class 转换为 jar 并将 .class 转换为 exe

发布于 2024-10-21 21:02:01 字数 130 浏览 5 评论 0原文

如何使用cmd将

  • class文件转换为jar文件?
  • .class文件转为exe文件?
  • jar文件转为exe?

我可以将exe文件转换为jar文件吗?

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?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(5

灯角 2024-10-28 21:02:01

类文件到jar文件

用法:jar {ctxu}[vfm0M][jar 文件]

[清单文件] [-C dir] 文件...

选项:

-c 创建新存档

 -t 列出存档目录

 -x 从存档中提取指定(或所有)文件

 -u 更新现有存档

 -v 在标准输出上生成详细输出

 -f 指定归档文件名

 -m 包含指定清单文件中的清单信息

 -0 仅限商店;不使用 ZIP 压缩

 -M 不为条目创建清单文件

 -i 生成指定jar文件的索引信息

 -C 更改到指定目录并包含以下内容

file 如果任何文件是目录,则递归处理。清单文件名和存档文件名需要按照“m”和“f”标志的相同顺序指定
指定的。

示例1:将两个类文件归档到名为classes.jar的归档文件中:

`jar cvf classes.jar Foo.class Bar.class` 

示例 2:使用现有清单文件“mymanifest”和归档文件

将 foo/ 目录中的所有文件放入“classes.jar”中:

jar cvfm classes.jar mymanifest -C foo/ .

将 jar 文件转换为 .exe 文件

1)JSmooth .exe 包装器

2)JarToExe 1.8

3)执行器

4)高级安装程序

这里详细讨论了将 .class 转换为 .exe

Class files to jar files

Usage: jar {ctxu}[vfm0M][jar-file]

[manifest-file] [-C dir] files ...

Options:

-c  create new archive

 -t  list table of contents for archive

 -x  extract named (or all) files from archive

 -u  update existing archive

 -v  generate verbose output on standard output

 -f  specify archive file name

 -m  include manifest information from specified manifest file

 -0  store only; use no ZIP compression

 -M  do not create a manifest file for the entries

 -i  generate index information for the specified jar files

 -C  change to the specified directory and include the following

file If any file is a directory then it is processed recursively. The manifest file name and the archive file name needs to be specified in the same order the 'm' and 'f' flags are
specified.

Example 1: to archive two class files into an archive called classes.jar:

`jar cvf classes.jar Foo.class Bar.class` 

Example 2: use an existing manifest file 'mymanifest' and archive

all the files in the foo/ directory into 'classes.jar':

jar cvfm classes.jar mymanifest -C foo/ .

Convert jar files to .exe file

1)JSmooth .exe wrapper

2)JarToExe 1.8

3)Executor

4)Advanced Installer

Convert .class to .exe is discussed in length here

剧终人散尽 2024-10-28 21:02:01

您一定错过了这个。请查看Java Archive (JAR) 文件指南。

并且肯定错过了 Real 的 How to for it 制作 JAR 可执行文件 有多个包装器完成这项工作(将 Jar 转换为 exe,特定于平台)。您只需在 StackOverflow 中搜索 Jar exe

You must have missed this. Please look into Java Archive (JAR) Files Guide.

And surely missed Real's How to for it Make a JAR executable There are multiple wrappers that do this work (converting Jar to exe, platform specific). You just need to search in StackOverflow for Jar exe

挽手叙旧 2024-10-28 21:02:01

要将 .class 文件转换(实际上是打包)为 .jar 文件,请使用 jar 工具。然后,您可以使用 Launch4jJSmooth 或其他几个软件包(在网络上搜索“jar exe”)。

To convert (actually, package) .class files into .jar files, you use the jar tool. You can then generate a .exe file from the .jar using tools like Launch4j, JSmooth or several other packages (search the web for "jar exe").

迟月 2024-10-28 21:02:01

如果您使用 Netbeans IDE,那么从 .class 文件创建 .exe 文件不会花费太多时间。在IDE中,创建一个新项目并将您的java程序放入该项目中。现在按照以下步骤操作 -

  1. 右键单击​​项目并选择属性。
  2. 从左侧面板中选择“运行”,然后在右侧面板中输入主类(其中定义了 main 方法)。
  3. 再次右键单击该项目并选择添加库。选择摆动布局扩展。单击添加库。
    4.现在从 IDE 的运行菜单中选择 clean 和 build。确保您已将此项目设置为主项目。
  4. 打开CMD并将目录设置为您的项目。转到“dist”>并输入 java -jar jarname.jar。
  5. 您的程序现在正在 cmd 中运行。
  6. 打开 launch4j 并提供所需的信息。
  7. 运行并享受您的应用程序。

If you are using Netbeans IDE, then creating .exe file from .class file won't take much time. In IDE, create a new project and put your java program in this project. Now follow these steps-

  1. Right click the project and choose properties.
  2. Choose run from left panel and enter the main class(in which main method is defined) in right panel.
  3. Again right click the project and choose add library. Select swing layout extensions. Click add library.
    4.Now select clean and build from run menu in your IDE. Make sure that you have already set your this project as main project.
  4. Open the CMD and set the directory to your project. Go to "dist" > and type java -jar jarname.jar.
  5. Your program is running in cmd now.
  6. Open launch4j and provide the information required.
  7. Run and enjoy your application.
熟人话多 2024-10-28 21:02:01

使用命令行创建 jar 文件。答案在 http://download.oracle.com/javase/tutorial/deployment /jar/build.html

类到 exe。在 http://www.javacoffeebreak.com/faq/faq0042.html

Jar 中回答EXE文件。回答 http ://viralpatel.net/blogs/2009/02/convert-jar-to-exe-executable-jar-file-to-exe-converting.html

可以将 exe 转换为 jar 文件。但涉及逆向工程来发现 exe 中的内容,提取并用它做任何你想做的事情。在我看来,根本不值得。

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.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文