gpt4 book ai didi

windows - PyQt QFileDialog getOpenFileName 无法从命令行(Windows)工作

转载 作者:可可西里 更新时间:2023-11-01 10:34:08 26 4
gpt4 key购买 nike

我正在尝试制作一个 gui (Qt Designer) 来导入 excel 文件并在 gui 中显示数据。

当我从我的 IDE (Spyder) 中运行该脚本时它工作正常,但如果我从命令窗口运行它或通过从 Windows 资源管理器打开 python 文件,导入功能将不起作用。 (GUI 启动正常,但是当按下导入按钮并选择文件时,没有任何反应,也没有产生错误。从 Spyder 运行时,数据按预期导入并显示在 GUI 中)。

如果我预先选择文件位置(在下面的代码中注释掉),那么脚本可以从命令行或通过从资源管理器中单击来正常工作。

感谢您的帮助!

Python 2.7( Anaconda )、Windows 10、PyQt4

import sys
from PyQt4 import QtGui
from excel_import_gui import Ui_MainWindow
import xlrd


class Main(QtGui.QMainWindow):
def __init__(self):
QtGui.QMainWindow.__init__(self)
self.ui = Ui_MainWindow()
self.ui.setupUi(self)

self.setupSignals()


def set_import_data(self,data_to_import,table_to_change):
for row in range(len(data_to_import)):
for col in range(len(data_to_import[0])):
table_to_change.setRowCount(len(data_to_import))
table_to_change.setColumnCount(len(data_to_import[0]))
item = data_to_import[row][col]
table_to_change.setItem(row,col,QtGui.QTableWidgetItem(str(item)))


def setupSignals(self):
self.ui.importData_btn.clicked.connect(self.select_file)


def select_file(self):
excel_file = QtGui.QFileDialog.getOpenFileName(self,
"Select Excel file to import","","Excel (*.xls *.xlsx)")

# excel_file = "C:/Users/Ben/Work/Python tests/Qt GUIs/Excel_import_GUI/fish_test.xlsx"


if excel_file:
open_excel_file = xlrd.open_workbook(excel_file)
self.start_import_data(open_excel_file)


def start_import_data(self, workbook):
#import data from excel file
workbook_data = []
for sheetNum in range (workbook.nsheets):
worksheet = workbook.sheet_by_index(sheetNum)
workbook_data.append([[worksheet.cell_value(row,col) for col in range (worksheet.ncols)] for row in range(worksheet.nrows)])

# Set each worksheet of workbook_data to each tab in GUI widget
self.set_import_data(workbook_data[0],self.ui.fish_table)
self.set_import_data(workbook_data[1],self.ui.boats_table)


if __name__ == "__main__":
app = QtGui.QApplication(sys.argv)
window = Main()
window.show()
sys.exit(app.exec_())

最佳答案

好吧,我通过将 excel_file 变量转换为字符串找到了自己的解决方案。

excel_file = str(QtGui.QFileDialog.getOpenFileName(self, "Select Excel file to import","","Excel (*.xls *.xlsx)")) 

关于windows - PyQt QFileDialog getOpenFileName 无法从命令行(Windows)工作,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/36799056/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com