有没有一种简单的方法可以使用 python 将 .dbf 文件保存为 .xls 文件。我只想在 python 中打开 .dbf 文件,然后立即执行“另存为 .xls”。我试图避免遍历 dbf 中的记录并写入 excel 表。
就像是:
fileobj = open(outFolder + "\\" + "TABLE.dbf")
fileobj.save(outFolder + "\\" + "TABLE.xls")
我在互联网上搜索过,但没有找到任何东西,所以我想我会尝试一个帖子。
谢谢,迈克