gpt4 book ai didi

java - python 相当于这个简短的 java 代码

转载 作者:太空宇宙 更新时间:2023-11-04 09:15:05 24 4
gpt4 key购买 nike

我正在用 python 编写套接字服务器。它需要向客户端模块发送确认。引自协议(protocol)描述:

"[...]server should determine if it would accept data from this module. If yes server will reply to module 01 if not 00."

我在 python 中将其实现为:

connection.send('01')

它不工作,所以我检查了服务器的 java 实现:

        byte[] answer = {
0x01};
out.write(answer);
out.flush();

不知是否相同?System.out.write(answer);似乎没有向控制台输出任何东西。

最佳答案

您要发送两个字节,0x30,然后是 0x31,而 Java 代码只发送一个字节,0x01

请尝试以下操作:

connection.send('\x01')

如果您想知道 0x300x31 来自哪里,它们是 ASCII字符 '0''1' 的代码。

关于java - python 相当于这个简短的 java 代码,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/10618247/

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