1

TCP 接続を介してこの文字列を送信したい:

TR220,2,A10000XX,3545.1743,5119.5794,001.0,1503,52:56:16,2012/09/13,0,0,0,0,0,V,000,0,0,0,,+989123456789,*

このコードを使用してテキストを送信しています:

string uri = "http://localhost:1414";
String record = "TR220,2,A10000XX,3545.1743,5119.5794,001.0,1503,52:56:16,2012/09/13,0,0,0,0,0,V,000,0,0,0,,+989123456789,*";
HttpWebRequest request = (HttpWebRequest) WebRequest.Create(uri);
request.Method = "POST";
byte[] postBytes = GetBytes(record);
request.ContentType = "text/plain";
request.ContentLength = postBytes.Length;
Stream requestStream = request.GetRequestStream();
requestStream.Write(postBytes, 0, postBytes.Length);

および GetBytes メソッド:

private byte[] GetBytes(string str)
{
    byte[] bytes = new byte[str.Length * sizeof(char)];
    System.Buffer.BlockCopy(str.ToCharArray(), 0, bytes, 0, bytes.Length);
    return bytes;
}

このリクエストを送信した後、反対側のアプリで、次の文字列を取得します。

POST / HTTP/1.1\r\nContent-Type: text/plain\r\nHost: localhost:1414\r\nContent-Length: 212\r\nExpect: 100-continue\r\nConnection: Keep-Alive\r\n\r\n

このコードブロックを使用して:

tcpListener = new TcpListener(IPAddress.Any, 1414);
listenThread = new Thread(new ThreadStart(ListenForClients));
listenThread.Start();

および ListenForClients メソッド (わかりやすくするために一部のコードは省略されています):

NetworkStream clientStream = tcpClient.GetStream();
byte[] message = new byte[4096];
int bytesRead;
while (true)
{
    bytesRead = 0;
    try { bytesRead = clientStream.Read(message, 0, 4096); }
    catch { break; }
    ASCIIEncoding encoder = new ASCIIEncoding();
    String data = encoder.GetString(message, 0, bytesRead);
    MessageReceived(data);
}

私の質問は、送信された文字列と受信された文字列が同じではないのはなぜですか?

4

1 に答える 1