我正在尝试调整API的示例java代码以使用python脚本。我知道java代码工作,可以在python中进行套接字连接,但无法弄清楚如何在python中转换字符串,以便能够成功发送xml请求。我很确定我需要使用struct但是在上周还没有弄明白。
此外,我相当确定我需要先发送请求的长度然后请求,但我再次无法获得任何显示服务器程序上成功请求的内容。
public void connect(String host, int port) {
try {
setServerSocket(new Socket(host, port));
setOutputStream(new DataOutputStream(getServerSocket().getOutputStream()));
setInputStream(new DataInputStream(getServerSocket().getInputStream()));
System.out.println("Connection established.");
} catch (IOException e) {
System.out.println("Unable to connect to the server.");
System.exit(1);
}
}
public void disconnect() {
try {
getOutputStream().close();
getInputStream().close();
getServerSocket().close();
} catch (IOException e) {
// do nothing, the program is closing
}
}
/**
* Sends the xml request to the server to be processed.
* @param xml the request to send to the server
* @return the response from the server
*/
public String sendRequest(String xml) {
byte[] bytes = xml.getBytes();
int size = bytes.length;
try {
getOutputStream().writeInt(size);
getOutputStream().write(bytes);
getOutputStream().flush();
System.out.println("Request sent.");
return listenMode();
} catch (IOException e) {
System.out.println("The connection to the server was lost.");
return null;
}
}
答案 0 :(得分:0)
如果您尝试在python中发送字符串:
在python2中,您可以执行sock.send(s)
,其中s
是您要发送的字符串,sock
是socket.socket
。在python3中,您需要将字符串转换为bytestring。您可以使用字节(s,'utf-8')进行转换,或者只需在字符串前加上b,如b'abcd'。请注意,send仍然具有套接字发送的所有常规限制,即它只会发送尽可能多的内容,并返回经过多少字节的计数。
以下内容将作为具有sock
属性的类的方法。 sock
是要通过
def send_request(self, xml_string):
send_string = struct.pack('i', len(xml_string)) + xml_string
size = len(send_string)
sent = 0
while sent < size:
try:
sent += self.sock.send(send_string[sent:])
except socket.error:
print >> sys.stderr, "The connection to the server was lost."
break
else:
print "Request sent."
确保import
socket
,sys
和struct