1.实验内容
1.创建服务端和客户端,选择一个通信端口,用Python语言编程实现通信演示程序;
2.要求包含文件的基本操作,例如打开和读写操作。
3.要求发送方从文件读取内容,加密后并传输;接收方收到密文并解密,保存在文件中。
4.程序代码托管到码云。
2. 实验过程及结果
实验开始之前,我设想了一下实验结束后的效果,总觉得光秃秃的控制台缺乏美感(尽管是pycharm),于是,我打算加入GUI图形界面,既然追求美感,就贯彻到底咯。
首先,我打开了一个软件:wxFormBuilder(这里我参考了一个大佬的博客),打开后的界面是这样的:
我们先选择Forms点击Frame,然后再建立几个boxsizer,加入一些必备控件textctrl、button,如图,其中,设置bsizer5的proportion为9,使其看上去更加和谐
最后进行一些细节上的设置,例如按钮名称以及事件绑定。最终效果如图:
其中三个按钮分别绑定事件:
保存之后可以导出对应的.py文件,基本重复上述操作,可以得到客户端的图形界面和对应的.py文件
打开pycharm,新建一个工程文件夹,将上述两个.py文件复制到文件夹中,然后新建两个.py文件,分别命名为severf.py和clientf.py,输入以下内容继承图形界面
import wx
import severwindow #或clientwindow,下面同样
class CliFrame(severwindow.Sever):
def __init__(self, parent):
severwindow.Sever.__init__(self, parent)
def main():
app = wx.App(False)
frame = CliFrame(None)
frame.Show(True)
app.MainLoop()
if __name__ == "__main__":
main()
pass
运行一下,结果如图:
还有一点忘记说了,就是图形界面的图标和背景色,我在
wx.Frame.__init__ ( self, parent, id = wx.ID_ANY, title = u" Client", pos = wx.DefaultPosition, size = wx.Size( 500,300 ), style = wx.DEFAULT_FRAME_STYLE|wx.TAB_TRAVERSAL )
后面加入了,图标是在这个网站上面搜的,就像我说的,既然要追求美观,就贯彻到底咯
self.icon = wx.Icon('client.ico', wx.BITMAP_TYPE_ICO)
self.SetIcon(self.icon)
self.SetBackgroundColour('#00FFFF') #天蓝色
接下来就是编写对应的事件函数
服务器的打开按钮:
def open_file(self,event):
text=self.file_name.GetValue()
file=open(text,"rb+")
self.file_content_d.SetValue(file.read())
file.close()
服务器的加密按钮:
def encrypt_con(self,event):
content_d=self.file_content_d.GetValue()
content_e=base64.b64encode(content_d.encode())
self.file_content_e.SetValue(content_e)
服务器的发送按钮:
def send_file(self,event):
content=self.file_content_e.GetValue()
conn.send(content.encode())
客户端的解密按钮:
def decrypt_con(self,event):
content_d=base64.b64decode(content)
self.file_content_d.SetValue(content_d)
服务器的保存按钮:
def save_con(self,event):
text=self.file_name.GetValue()
file=open(text,"wb+")
content_d=base64.b64decode(content)
file.write(content_d)
file.close()
最后导入相关模块就可以运行了,其中加密我用的是来自pycryptodome模块的base64。运行结果如图: