检查代码问题#!/usr/bin/env python3 # -*- coding:utf-8 -*- # Date: 19-5-22 下午8:48 import socket import os client = socket.socket() # 声明socket类型,同时生成socket连接对象 client.connect(('localhost', 6666)) # 链接服务器的ip + 端口 BASE_DIR = os.path.dirname(os.path.abspath(__file__)) # 获得当前目录 while True: msg = input(">>:").strip() # 获得要向服务端发送的信息,字符串格式 if len(msg) == 0: continue client.send(msg.encode("utf-8")) # 将字符串格式编码成bytes,发送 if msg == 'break': break data = client.recv(1024) # 接收服务端返回的内容 if len(str(data, 'utf-8').split('|')) == 2: # 如果返回的字符串长度为2,说明针对的任务2,从服务端传回一张图片 filename, filesize = str(data, 'utf8').split('|') # 获得指定图像的名称,图像大小 path = os.path.join(BASE_DIR, filename) # 指定图像的保存路径 filesize = int(filesize) # 图像大小转换成整形 f = open(path, 'ab') # 以二进制格式打开一个文件用于追加。如果该文件不存在,创建新文件进行写入。 has_receive = 0 # 统计接收到的字节数 while has_receive != filesize: data1 = client.recv(1024) # 一次从服务端接收1024字节的数据 f.write(data1) # 写入 has_receive += len(data1) # 更新接收到的字节数 f.close() # 关闭文件 print("recv:", data.decode()) client.close()
时间: 2024-04-28 11:26:53 浏览: 142
if (course.getTeacher().equals(teacher)) {
System.out.println(course.getCourseId() + " " + course.getCourse代码看起来没有语法错误,但是建议添加异常处理以避免程序在出现问题时崩溃。例如Name());
}
}
System.out.print("请选择要删除的课程编号:");
String courseId = scanner.next();
,在接收数据时,可以添加try-except语句以捕获异常并处理。另外,建议在发送和接 Course course = findCourse(courseId);
if (course != null && course.getTeacher().equals(teacher)) {
for (Selection收数据时添加超时机制以避免程序阻塞。
阅读全文