qtabwidget qtablewidget显示excel工作表内容(极简excel viewer)

python 复制代码
import sys 
from PyQt5.QtWidgets import QMainWindow, QApplication, QPushButton, QWidget, QAction, QTabWidget, QVBoxLayout, QLabel,QFileDialog
import getpath
import os
from PyQt5.QtWidgets import QTableWidget, QTableWidgetItem
import openpyxl
# Creating the main window 
class MainW(QMainWindow): 
    def __init__(self): 
        super().__init__() 
        self.title = 'PyQt5 - QTabWidget'
        self.left = 0
        self.top = 0
        # self.width = 300
        # self.height = 200
        self.setWindowTitle(self.title) 
        # self.setGeometry(self.left, self.top, self.width, self.height) 

        self.tab_widget = MyTabWidget(self) 
        self.setCentralWidget(self.tab_widget) 
        self.showMaximized() 

# Creating tab widgets 

class MyTabWidget(QWidget): 
    def getBook(self,fname):
        print(fname)
        from openpyxl import load_workbook
        xl_book = load_workbook(filename=fname)
        datas=[]
        titles=[]
        for i in range(len(xl_book.worksheets)):
            table = xl_book.worksheets[i]
            data = []
            titles.append(table.title)
            for row in table.values:
                r = []
                for one in row:
                    if one!=None:
                        r.append(one)
                    else:
                        r.append("")
                data.append(r)
            datas.append(data)
        return (titles,datas)
    def Table(self,data):
        print(data)
        table = QTableWidget()
        table.setRowCount(len(data)) # 设置行数
        if len(data)>0:
            table.setColumnCount(len(data[0]))  # 设置列数
            headers=[openpyxl.utils.get_column_letter(i+1) for i in range(len(data[0]))]
            table.setHorizontalHeaderLabels(headers)
            # 遍历Excel数据并插入到表格控件中
            row = 0
            for row_data in data:
                col = 0
                for cell in row_data:
                    item = QTableWidgetItem(str(cell))
                    table.setItem(row, col, item)
                    col += 1
                row += 1
        return table
    def __init__(self, parent): 
        super(QWidget, self).__init__(parent) 
        self.layout = QVBoxLayout(self) 
        b=QPushButton('open')
        b.clicked.connect(self.open_xlsx)
        self.layout.addWidget(b) 
        # (self.titles,self.datas)=self.getBook(os.path.join(getpath.getpath(),"..","data","spec","low steel.xlsx"))
        self.tab_widget = QTabWidget() 
        # for i in range(len(self.datas)):
        #     one=self.Table(self.datas[i])
        #     self.tab_widget.addTab(one,self.titles[i])#"sheet"+str(i+1))
        self.tab_widget.setTabPosition(QTabWidget.South)
        self.layout.addWidget(self.tab_widget) 
        print(sys.argv)
        if len(sys.argv)>1:
            self.open_file(sys.argv[1])
    def open_file(self,fname):
        print(fname)
        (self.titles,self.datas)=self.getBook(fname)
        self.tab_widget.clear()
        for i in range(len(self.datas)):
            one=self.Table(self.datas[i])
            self.tab_widget.addTab(one,self.titles[i])#"sheet"+str(i+1))
        print(dir(self.tab_widget))
    def open_xlsx(self):
        FileDialog = QFileDialog(self)
        folder=os.path.join(os.path.expanduser('~'), "Desktop")
        fil = "xlsx Files (*.xlsx);;All Files (*)"    
        FileDirectory = FileDialog.getOpenFileName(
            None, 'select import file', folder, fil)  # 选择目录,返回选中的路径
        # logging.info(FileDirectory)
        fname = FileDirectory[0]
        if fname == "":
            pass
        else:
            self.open_file(fname)
if __name__ == '__main__': 
    app = QApplication(sys.argv) 
    ex = App() 
    sys.exit(app.exec_()) 
相关推荐
闲人编程2 分钟前
Python游戏开发入门:Pygame实战
开发语言·python·游戏·pygame·毕设·codecapsule
是苏浙8 分钟前
零基础入门C语言之枚举和联合体
c语言·开发语言
报错小能手11 分钟前
C++笔记(面向对象)静态联编和动态联编
开发语言·c++·算法
WBluuue17 分钟前
AtCoder Beginner Contest 430(ABCDEF)
c++·算法
小肖爱笑不爱笑19 分钟前
2025/11/5 IO流(字节流、字符流、字节缓冲流、字符缓冲流) 计算机存储规则(ASCII、GBK、Unicode)
java·开发语言·算法
手握风云-32 分钟前
Java 数据结构第二十八期:反射、枚举以及 lambda 表达式
java·开发语言
熬了夜的程序员35 分钟前
【LeetCode】99. 恢复二叉搜索树
算法·leetcode·职场和发展
ᐇ95936 分钟前
Java Vector集合全面解析:线程安全的动态数组
java·开发语言
Kent_J_Truman40 分钟前
LeetCode Hot100 自用
算法·leetcode·职场和发展
还是码字踏实40 分钟前
算法题种类与解题思路全面指南:基于LeetCode Hot 100与牛客Top 101
算法·leetcode