Any tool to convert PDF to XLs on linux? [closed]
Questions asking us to recommend or find a tool, library or favorite off-site resource are off-topic for Stack Overflow as they tend to attract opinionated answers and spam. Instead, describe the problem and what has been done so far to solve it.
Closed 8 years ago.
Improve this question 开发者_开发百科All,
Is there any tool to convert PDF to XLS on linux....
Thanks.
try
pdftotext -layout input_file.pdf output.txt
from then you could try pasting into a spread sheet and setting the correct diameter. All depends on the pdf in question. If you know some python you can also check out pdfminer to get the formatting you need.
Convert pdf to txt, then convert txt to xls ;)
Maybe you wanted it the other way? xls to pdf?
Use Koffice. Koffice can import PDF files and save them as doc. Then you can convert DOC files to XLS... I tested this method ;)
If you can use java, maybe a combination of apache poi and itext.
精彩评论