0

有没有一种简单的方法可以使用 python 将 .dbf 文件保存为 .xls 文件。我只想在 python 中打开 .dbf 文件,然后立即执行“另存为 .xls”。我试图避免遍历 dbf 中的记录并写入 excel 表。

就像是:

fileobj = open(outFolder + "\\" + "TABLE.dbf")
fileobj.save(outFolder + "\\" + "TABLE.xls")

我在互联网上搜索过,但没有找到任何东西,所以我想我会尝试一个帖子。

谢谢,迈克

4

1 回答 1

1

If you were willing to accept using the Python csv module (which would involve looping through dbf records and writing csv), consider going straight to xls by using xlwt.

Alternatively, could your client could be shown how to open dbf files in Excel?

于 2012-04-18T23:37:27.477 回答