我有一个python程序,该程序通过TCP-IP连接到matlab程序,其中python代码是客户端及其接收编号,例如:
1
2
5
6
7
etc..
(我收到的数字仅为:1、2、3、4、5、6、7)以随机顺序排列。我得到的错误是:ValueError:以10为底的int()的无效文字:b'1 \ n5 \ n'。我的代码是:
# TCP connection
try:
so = socket.socket(socket.AF_INET, socket.SOCK_STREAM)
except socket.error as err:
print ("socket creation failed with error %s" %(err))
#default port for socket
port = 2000
# default time out
#so.settimeout(1000000)
try:
host_ip = socket.gethostbyname('localhost')
except socket.gaierror:
# this means could not resolve the host
print ("there was an error resolving the host")
sys.exit()
# connecting to the server
so.connect((host_ip,port))
# MATLAB INFORMATION FOR OFFLINE EXPERIMENT
Nepoch = 10 #nr de epochs por trial
Nwords = 7 #nr de palavras (SIM, NAO, FOME, SEDE, URINAR, AR, POSICAO)
SeqTrain = [1, 3, 5, 7, 2, 4, 6, 1, 3, 5, 7, 2, 4, 6] #sequencia offline de treino
# read the TCP sequence received
def sequencia():
num = 0
for i in range(0,999):
s = so.recv(port) #+ b'\n' #since the sequence received is : 1\n 2\n 5\n etc
i = int(s)
#print(i)
#feedbak offline (for the user to know which are the words)
if (num in (0, Nepoch*Nwords+1, Nepoch*Nwords*2+2, Nepoch*Nwords*3+3, Nepoch*Nwords*4+4, Nepoch*Nwords*5+5,\
Nepoch*Nwords*6+6)):
labels1[i-1].configure(foreground="white")
root.update()
elif (num in (Nepoch*Nwords*7+7, Nepoch*Nwords*8+8, Nepoch*Nwords*9+9, Nepoch*Nwords*10+10,\
Nepoch*Nwords*11+11, Nepoch*Nwords*12+12, Nepoch*Nwords*13+13)):
labels2[i-1].configure(foreground="white")
root.update()
else:
labels[i-1].configure(background="green",foreground="red")
root.update()
winsound.PlaySound(sounds[i-1], winsound.SND_FILENAME)
labels[i-1].configure(background="gray",foreground="white")
root.update()
num = num + 1
我收到的数字是在matlab程序中实时生成的。问题是,当我在matlab中使用标准值进行仿真时,python程序就可以正常工作,这使我相信这是因为在matlab中生成了实时值。
此外,当我离线注释#feedbak的一部分(以使用户知道哪些词)直到最后时,程序将接收数字,并且i = int毫无问题,只有当我取消注释时其余的给了我错误。 当我打印接收到的值时,例如:b'1 \ n'b'7 \ n'b'4 \ n'b'2 \ n'b'6 \ n'b'3 \ n'b '1 \ n'b'5 \ n'(等等)->它从不说它同时接收到2个值,就像我取消注释程序的其余部分时一样
我发布的所有python程序都适用于前2/3个数字,然后给我错误,这是回溯:
>>>
RESTART: C:\Users\meca\Desktop\Python_Exercises\seq_tcp_offline-TCP-CLIENT.py
b'1\n'
b'7\n'
b'4\n'
Traceback (most recent call last):
File "C:\Users\meca\Desktop\Python_Exercises\seq_tcp_offline-TCP-CLIENT.py", line 139, in <module>
sequencia()
File "C:\Users\meca\Desktop\Python_Exercises\seq_tcp_offline-TCP-CLIENT.py", line 44, in sequencia
i = int(s)
ValueError: invalid literal for int() with base 10: b'2\n6\n'
这对我来说很奇怪,你们有什么想法吗?非常感谢
答案 0 :(得分:0)
\n
是换行符。当字节对象中有多个换行符时,int()
会遇到麻烦。
单个数字后跟换行符可以转换。
>>> b = b'1\n'
>>> int(b)
1
当您收到由换行符分隔的数字的流时,您需要在转换之前在空白处拆分bytes对象。
>>> b = b'1\n5\n'
>>> b.split()
[b'1', b'5']
>>> for c in b.split():
... print(int(c))
1
5
>>>
或
>>> [int(n) for n in b.split()]
[1, 5]
>>>
或者,您可以尝试在每次迭代中仅读取2个字节。当前,您正在将2000
的值传递给buffsize参数。
s = so.recv(2)
尽管您要进行测试以确保您不使用数据-如果您一次只读取2个字节,我不知道套接字如何处理堆积的数据。