1

我想使用 python 将 .dbf 文件转换为 .xls。我已经引用了这个代码片段,但是我无法使用此代码编写第一个非标题行:

    from xlwt import Workbook, easyxf
    import dbfpy.dbf

    dbf = dbfpy.dbf.Dbf("C:\\Temp\\Owner.dbf")
    book = Workbook()
    sheet1 = book.add_sheet('Sheet 1')

    header_style = easyxf('font: name Arial, bold True, height 200;')

    for (i, name) in enumerate(dbf.fieldNames):
        sheet1.write(0, i, name, header_style)

    for row in range(1, len(dbf)):
        for col in range(len(dbf.fieldNames)):
            sheet1.row(row).write(col, dbf[row][col])

    book.save("C:\\Temp\\Owner.xls")

如何获得要写入的第一个非标题行?

谢谢

4

1 回答 1

2

您错过了第一行 dbf 中的第 0 行。在 dbf 文件中,列名不是一行。但是 Excel 文件中的第 0 行是标题,因此 dbf 和 xls 中的索引需要不同,因此您需要将 1 添加到 Excel 工作表中使用的行。

所以

for row in range(len(dbf)):
    for col in range(len(dbf.fieldNames)):
        sheet1.row(row+1).write(col, dbf[row][col])

请注意,所指的狙击手也不会在范围内添加 1

于 2013-03-04T14:13:11.123 回答