如下所示:
創(chuàng)新互聯(lián)是一家專業(yè)提供永吉企業(yè)網(wǎng)站建設(shè),專注與成都網(wǎng)站建設(shè)、網(wǎng)站制作、html5、小程序制作等業(yè)務。10年已為永吉眾多企業(yè)、政府機構(gòu)等服務。創(chuàng)新互聯(lián)專業(yè)網(wǎng)站建設(shè)公司優(yōu)惠進行中。import sys from PyQt5.QtWidgets import QMainWindow,QApplication,QTextEdit,QAction,QFileDialog from PyQt5.QtGui import QIcon class Example(QMainWindow): def __init__(self): super(Example, self).__init__() self.initUI() def initUI(self): self.textEdit = QTextEdit() self.setCentralWidget(self.textEdit) self.statusBar() openfile = QAction(QIcon(r'C:\Users\Administrator\PycharmProjects\QT\picture\文件.jpg'),'open',self) openfile.setShortcut("Ctrl + 0") openfile.setStatusTip('open new file') openfile.triggered.connect(self.showDialog) menubar = self.menuBar() filemune = menubar.addMenu('$File') filemune.addAction(openfile) self.setGeometry(300,300,300,300) self.setWindowTitle('FIEL dialog') self.show() def showDialog(self): fname = QFileDialog.getOpenFileName(self,'open file', '/') if fname[0]: try: f = open(fname[0], 'r') with f: data = f.read() self.textEdit.setText(data) except: self.textEdit.setText("打開文件失敗,可能是文件內(nèi)型錯誤") if __name__ == "__main__": app = QApplication(sys.argv) ex = Example() sys.exit(app.exec_())
另外有需要云服務器可以了解下創(chuàng)新互聯(lián)scvps.cn,海內(nèi)外云服務器15元起步,三天無理由+7*72小時售后在線,公司持有idc許可證,提供“云服務器、裸金屬服務器、高防服務器、香港服務器、美國服務器、虛擬主機、免備案服務器”等云主機租用服務以及企業(yè)上云的綜合解決方案,具有“安全穩(wěn)定、簡單易用、服務可用性高、性價比高”等特點與優(yōu)勢,專為企業(yè)上云打造定制,能夠滿足用戶豐富、多元化的應用場景需求。