我們接的項目有一個java寫的server,我只有它的文檔,並且用java已經實現,但是現在要為
python實現,用java實現的代碼:
public static void main(String[] args) throws WindException, SendException, RecvException{
String host="172.22.128.16";
int port=6001;
TcpComm tcp = new TcpComm(true);
try {
tcp.call(host,port);
tcp.setTimeOut(30);
String msg="POF001|S2B024|01|0033596105||";
byte[] req = msg.getBytes();
tcp.sendMsg(req);
byte[] ans = tcp.recvBytesMsg();
System.out.println(ans);
} catch (CallException e) {
e.printStackTrace();
}
接口就是使用socket發送一個定制的代表內容長度的報文頭和內容,sendMsg方法:
public void sendMsg(byte[] b) throws SendException {
try {
OutputStream out = sock.getOutputStream();
if (hasAtrHead) {
byte[] sbt = short2Byte((short) b.length, true);
out.write(head);
out.write(sbt);
}
out.write(b);
out.flush();
}
其中hasAtrrHead使用的是true,定制報文頭的方法:
static public byte[] short2Byte(short value, boolean order) {
byte[] bt = new byte[2];
if (order) { // true 高8位 存放在tb[0]
bt[0] = (byte) (value >> 8 & 0xff);
bt[1] = (byte) (value & 0xff);
} else {
bt[1] = (byte) (value >> 8 & 0xff);
bt[0] = (byte) (value & 0xff);
}
return bt;
}
使用以上java代碼運行沒問題,但是當我用python寫的時候,發送的socket沒有被server接收到,應該是發送的格式不對,python代碼:
#-*- coding:GBK -*-
import socket
class Comm(object):
def heads(self,length):
bt=bytearray()
bt.append(length >> 8 & 0xff)
bt.append(length & 0xff)
return bt
def client(self):
HOST='172.22.128.16'
PORT=6001
s=socket.socket(socket.AF_INET,socket.SOCK_STREAM)
s.connect((HOST,PORT))
while 1:
content='POF001|F2B107|01|3061009458||'
length=len(content)
head=self.heads(length)
content=bytearray(content)
s.send(head)
s.send(content)
data=s.recv(2048)
s.close()
if __name__=='__main__':
a=Comm()
a.client()
有人能告訴我到底是哪裡不同嗎?折騰兩天了,求解答!!!
問題已被自己解決,python中如直接轉化數字為byte為4個字節,如需兩個字節的網絡序byte,需使用struct.pack('!h',x)