zoukankan      html  css  js  c++  java
  • python3 读取写入excel操作-win32com

    前面有写一篇是用xlrd操作excel的,这一篇是使用win32com来进行操作excel,个人推荐使用win32com。

    要使用win32com组件,也需要先导入win32com包。

    # -*- coding:utf-8 -*-
    __author__ = u'harry'
    
    import win32com
    from win32com.client import Dispatch,constants
    import sys
    import os
    sys.path.append(os.path.dirname(os.path.dirname(__file__)))# Excel表格中测试结果底色
    OK_COLOR = 0xffffff
    False_COLOR = 0xff
    # NT_COLOR=0xffff
    NT_COLOR = 0xC0C0C0
    
    # Excel表格中测试结果汇总显示位置
    TESTTIME = [1, 14]
    TESTRESULT = [2, 14]
    
    # Excel模版设置
    # self.titleindex=3        #Excel中测试用例标题行索引
    # self.casebegin =4        #Excel中测试用例开始行索引
    # self.argbegin   =3       #Excel中参数开始列索引
    # self.argcount  =8        #Excel中支持的参数个数
    class excel():
        # def __init__(self, sFile, dtitleindex=3, dcasebegin=4, dargbegin=3, dargcount=8):
        def __init__(self, sFile):
            self.xlApp = win32com.client.Dispatch('Excel.Application')  # MS:Excel  WPS:et
            try:
                self.book = self.xlApp.Workbooks.Open(sFile)
            except:
                print(u"打开文件失败")
                exit()
    
        def close(self):
            # self.book.Close(SaveChanges=0)
            #self.book.Save()
            self.book.Close(SaveChanges=0)
            # self.xlApp.Quit()
            del self.xlApp
    
        def read(self, iSheet, iRow, iCol):
            try:
                sht = self.book.Worksheets(iSheet)
                sValue = str(sht.Cells(iRow, iCol).Value)
            except:
                self.close()
                print(u'读取数据失败')
                exit()
                # 去除'.0'
            if sValue[-2:] == '.0':
                sValue = sValue[0:-2]
            return sValue
    
        def write(self, iSheet, iRow, iCol, sData):
            try:
                sht = self.book.Worksheets(iSheet)
                sht.Cells(iRow, iCol).Value = sData  # .decode("utf-8")
                if sData == "Failed":
                    sht.Cells(iRow, iCol).Interior.Color = False_COLOR
                    self.book.Save()
                else:
                    sht.Cells(iRow, iCol).Interior.Color = OK_COLOR
                    self.book.Save()
            except Exception:
                self.close(SaveChanges=0)
                print(u'写入数据失败:'+Exception)
                exit()
    
    '''
    excelpath = 'D:\python\DATA\TestCase1.xls'
    test = excel(excelpath)
    test.write(2, 11, 7,"aaa")
    test.close()
    '''
  • 相关阅读:
    【Silverlight】汉诺塔游戏,带AI
    Farseer Physics Engine
    解决SilverLight的图片裁剪问题
    【C#】三维立体验证码 (3DCaptcha)
    又一个“众所周知”的DAL层设计BUG
    【C#】性别类
    36进制条码序列号生成器 [更新]
    理想的软件设计标准
    表驱动法概念到实战(一) 原理及基本运用
    Sudoku solver
  • 原文地址:https://www.cnblogs.com/harry-xiaojun/p/6709079.html
Copyright © 2011-2022 走看看