如何在可执行文件中包含pyinstaller的特定.jar文件?

时间:2018-04-24 23:15:12

标签: java python jar pyinstaller

如何在打包为exe时强制pyinstaller使用特定的.jar文件?

我正在尝试生成一个使用 tabula-py lib的可执行文件。这个库需要一个jar文件, tabula-1.0.1-jar-with-dependencies.jar ,我在我的file.py文件夹中。这些是 myfile.spec

的一些修改
# this is for pandas lib
def get_pandas_path():
    import pandas
    pandas_path = pandas.__path__[0]
    return pandas_path

dict_tree = Tree(get_pandas_path(), prefix='pandas', excludes=["*.pyc"])
a.datas += dict_tree
a.binaries = filter(lambda x: 'pandas' not in x[0], a.binaries)

# this is for tabula-py
jar = 'tabula-1.0.1-jar-with-dependencies'
jar_path = 'C:\\Users\\jaquedeveloper\\Documents\\freelancer\\bot\\' + jar
coll = COLLECT(exe,
       a.binaries,
       a.zipfiles,
       a.datas,
       [(jar, jar_path, 'PKG')],
       strip=None,
       upx=True,
       name='test')

但仍然存在错误。 当我从命令行运行我的代码时,使用java jar的tabula-py函数read_pdf()完全可以正常工作。

但是当我使用pyinstaller spec命令生成可执行文件时,它无法执行此函数,给出以下错误:

  

无法访问jarfile C:\ Users \ jaquedeveloper \ AppData \ Local \ Temp_MEI58442 \ tabula \ tabula-1.0.1-jar-with-dependencies.jar

该文件不在此文件夹下,也不存在tabula文件夹。 我将文件放在可执行文件的同一文件夹下。如何强制脚本使用它? 如何将jar从特定路径导入到可执行文件,而不是使用_MEI文件夹?

此问题也得到了支持here

1 个答案:

答案 0 :(得分:1)

前一段时间,我偶然遇到了这个线程,因为我遇到了完全相同的问题。使用pyinstaller将.jar文件添加到“ onefile”可执行文件中,似乎会将其放置在错误的临时目录中-... AppData \ Local \ Temp_MEI58442 \ tabula \ tabula-1.0.1-jar-下with-dependencies.jar。 添加的文件似乎放在... AppData \ Local \ Temp_MEI58442 \ tabula-1.0.1-jar-with-dependencies.jar中。这就是为什么在执行tabula.read_pdf()命令时找不到它的原因。 作为一种解决方法,我使用pyinstaller(而不是onefile)生成了onedir输出,并在jar文件中添加了目录“ tabula”,并且可以正常工作。

将其捆绑为一个文件也可以: 实际上,所有内容都在pyinstaller文档(https://pyinstaller.readthedocs.io/en/stable/usage.html)中。添加二进制.jar文件时,您可以在Linux和';'之后的':'之后指定临时文件夹内文件的相对路径。用于Win Systems。仅使用“。”作为路径将文件放置在./Temp_MEI*/下。因此,以Win为例,它看起来像这样:

pyinstaller --onefile --add-binary "C:/Users/Louis/Desktop/Github/pdf_reader/venv/Lib/site-packages/tabula/tabula-1.0.2-jar-with-dependencies.jar;./tabula/" myapp.py

此解决方案来得有点晚,但我希望它仍然可以对某人有所帮助。