gpt4 book ai didi

java - 我的 java 客户端无法与我的 python 服务器一起使用

转载 作者:行者123 更新时间:2023-12-02 04:49:47 25 4
gpt4 key购买 nike

我正在构建一个java客户端和一个python服务器,当我使用匹配的语言客户端/服务器运行它们时,它们都工作正常,但是当我使用python服务器运行java客户端时,套接字连接但java终端得到每当我尝试读取从 python 服务器发送的数据时就会卡住

这可能是一个缓冲问题,因为每当我用从 python 接收到的数据调用缓冲区时,终端就会卡在所述行中并且不会移动。

这是 python 服务器:

import socket
import pyautogui
def main():
HOST = "" # Endereco IP do Servidor
PORT = 1234 # Porta que o Servidor esta
tcp = socket.socket(socket.AF_INET, socket.SOCK_STREAM)
orig = (HOST, PORT)
tcp.bind(orig)
tcp.listen(1)
while True:
con, cliente = tcp.accept()
print ('Concetado por', cliente)
cone="Conectado".encode()
con.send(cone)
while True:
msg = con.recv(1024).decode()
if msg[0]=="/" :
cmsg=''
for i in range(1,len(msg)):
cmsg+=msg[i]
exec(cmsg)
if not msg: break
print (cliente, msg)
print ("Finalizando conexao do cliente", cliente)
con.close()
main()

这是 Java:

import java.io.*;
import java.net.*;
import java.util.Scanner;

public class MyClient {
public static void main(String[] args) {

try {
Socket soc = new Socket("localhost", 1234);
DataOutputStream dout = new DataOutputStream(soc.getOutputStream());
OutputStreamWriter osw = new OutputStreamWriter(dout);
BufferedWriter bw = new BufferedWriter(osw);
InputStream is = soc.getInputStream();
InputStreamReader isr = new InputStreamReader(is);
BufferedReader br = new BufferedReader(isr);
System.out.println("Here");
System.out.println(br.readLine());
System.out.println("Here2");
Scanner scanner = new Scanner(System.in);
while (!(bw.readLine().equals("exit"))) {
System.out.println(br.readLine());
String input = scanner.nextLine();
bw.write(input);
bw.flush();
}
dout.close();
soc.close();

} catch (Exception e) {
e.printStackTrace();
}
}
}

最佳答案

所以我实际上发现了问题所在,问题出在缓冲区上,它显然不明白线路已经结束,所以要解决它,我只需发送 "Conectado\n'

关于java - 我的 java 客户端无法与我的 python 服务器一起使用,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/56453120/

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