error from tabula-java:无法识别的选项:——pages
错误:无法创建Java虚拟机。
错误:发生致命异常。程序将退出。
我试图了解如何在表格中定义build_options函数。IO模块和convert_into函数中的java_options工作。为了理解它,我只使用指定的页面选项编写代码:
import tabula
options = tabula.io.build_options(pages="all")
dfs = tabula.io.convert_into('input.pdf',"output.csv",output_format="csv",java_options=options)
error from tabula-java:无法识别的选项:——pages
错误:无法创建Java虚拟机。
错误:发生致命异常。程序将退出。
使用build_options函数的正确方法是什么?
java_options
期望字符串列表
tabula.convert_into('input.pdf',"output.csv",output_format="csv", pages="all")
你不必使用build_options.
参见:https://tabula-py.readthedocs.io/en/latest/tabula.html tabula.io.convert_into