您的位置:

Excel转XML——详细解析Excel读写操作

一、读取Excel文件

Excel文件一般使用第三方库xlrd进行读取。参数包括文件路径、指定工作表等。

import xlrd

def read_excel(file_path, sheet_name):
    # 打开文件
    workbook = xlrd.open_workbook(file_path)
    
    # 获取指定工作表
    sheet = workbook.sheet_by_name(sheet_name)
    
    # 获取行数和列数
    nrows = sheet.nrows
    ncols = sheet.ncols
    
    # 读取数据
    data = []
    for i in range(nrows):
        row_data = []
        for j in range(ncols):
            row_data.append(sheet.cell_value(i,j))
        data.append(row_data)
    
    return data

使用示例:

file_path = "/path/to/file.xlsx"
sheet_name = "Sheet1"
data = read_excel(file_path, sheet_name)
print(data)

二、将Excel数据转换为XML格式

将Excel数据转换为XML格式,需要按照XML的格式要求进行构造,在Python中可以通过minidom库实现。

from xml.dom import minidom

def create_xml(data):
    # 创建XML文档对象
    doc = minidom.Document()
    
    # 创建根元素
    root = doc.createElement("root")
    doc.appendChild(root)
    
    # 创建数据元素
    for row_data in data:
        row = doc.createElement("row")
        root.appendChild(row)
        for j in range(len(row_data)):
            cell = doc.createElement("cell%s" % j)
            cell_text = doc.createTextNode(str(row_data[j]))
            cell.appendChild(cell_text)
            row.appendChild(cell)
    
    # 返回XML字符串
    return doc.toprettyxml(indent="  ")

使用示例:

data = [['A1', 'B1', 'C1'], ['A2', 'B2', 'C2'], ['A3', 'B3', 'C3']]
xml_str = create_xml(data)
print(xml_str)

三、将XML字符串写入文件

将XML字符串写入文件,需要使用Python内置的open()函数进行文件操作。

def write_xml(xml_str, file_path):
    with open(file_path, "w") as f:
        f.write(xml_str)

使用示例:

xml_str = create_xml(data)
file_path = "/path/to/file.xml"
write_xml(xml_str, file_path)

四、完整示例

将上述代码整合,形成Excel转XML的完整示例。

import xlrd
from xml.dom import minidom

def read_excel(file_path, sheet_name):
    # 打开文件
    workbook = xlrd.open_workbook(file_path)
    
    # 获取指定工作表
    sheet = workbook.sheet_by_name(sheet_name)
    
    # 获取行数和列数
    nrows = sheet.nrows
    ncols = sheet.ncols
    
    # 读取数据
    data = []
    for i in range(nrows):
        row_data = []
        for j in range(ncols):
            row_data.append(sheet.cell_value(i,j))
        data.append(row_data)
    
    return data

def create_xml(data):
    # 创建XML文档对象
    doc = minidom.Document()
    
    # 创建根元素
    root = doc.createElement("root")
    doc.appendChild(root)
    
    # 创建数据元素
    for row_data in data:
        row = doc.createElement("row")
        root.appendChild(row)
        for j in range(len(row_data)):
            cell = doc.createElement("cell%s" % j)
            cell_text = doc.createTextNode(str(row_data[j]))
            cell.appendChild(cell_text)
            row.appendChild(cell)
    
    # 返回XML字符串
    return doc.toprettyxml(indent="  ")

def write_xml(xml_str, file_path):
    with open(file_path, "w") as f:
        f.write(xml_str)

if __name__ == "__main__":
    file_path = "/path/to/file.xlsx"
    sheet_name = "Sheet1"
    xml_file_path = "/path/to/file.xml"
    
    data = read_excel(file_path, sheet_name)
    xml_str = create_xml(data)
    write_xml(xml_str, xml_file_path)

五、总结

通过阐述Excel转XML的过程,我们详细讲解了如何使用Python中的第三方库xlrd实现对Excel文件的读取,以及如何使用minidom库进行XML格式的构造,最后将XML字符串写入文件。这些知识点可以帮助开发者在实际项目中快速处理Excel数据。