谁能告诉我如何通过包含用于数据库连接的库jar文件来构建.exe文件?我有一个独立的应用程序,我正在使用启动 4j .exe构建器。
jar 到 exe 也可以用于数据库连接。但是您始终引用任何文件,jar和任何内容的绝对路径。因为 exe 在 Windows 中的任何位置运行。 例如:如果你的exe有任何文件关联。因此,您必须选择一个常量路径,在那里放置所有 jar 和所需的文件。在编码中,使用常量绝对路径引用该文件。 例如:c:\程序文件\你的公司\你的产品;c:\程序文件\你的公司\你的产品\你的罐子和这样。您的类路径引用此 jar。因此,您的 exe 运行没有任何相对路径问题。 如果您使用任何安装程序,您的工作将非常容易。示例高级安装程序。
Let the distribution file structure is like this:
bin/launch4j.exe
bin/config.xml
bin/dist/app.jar
bin/dist/lib/ojdbc6.jar
jar files in the lib directory can be included in the config file as below:
<launch4jConfig>
...........
<chdir>./dist</chdir>
...........
<classPath>
..........
<cp>./lib/*.jar</cp>
..........
</classPath>
...........
</launch4jConfig>