내 질문에 덧붙이는 것이 아니라 here으로 X- 레이 비전 고글을 부착 한 상태에서 코드를 보았을 때 나는 그것을 새 것으로 추가했습니다.HttpWebRequest/HttpWebResponse/StreamReader 코드가 이해가 되니?
나는이 코드가 어디에 있는지 기억이 나지 않지만 어딘가에서 발견 한 예제를 적용한 것입니다. 그러나 데이터가 서버로 전송되는 것조차 보이지 않습니다.
public static string SendXMLFile(string xmlFilepath, string uri)
{
HttpWebRequest request = (HttpWebRequest)WebRequest.Create(uri);
request.KeepAlive = false;
request.ProtocolVersion = HttpVersion.Version10;
request.Method = "POST";
StringBuilder sb = new StringBuilder();
using (StreamReader sr = new StreamReader(xmlFilepath))
{
String line;
while ((line = sr.ReadLine()) != null)
{
// test to see if it's finding any lines
//MessageBox.Show(line); <= works fine
sb.AppendLine(line);
}
byte[] postBytes = Encoding.UTF8.GetBytes(sb.ToString());
request.ContentLength = postBytes.Length;
// Did the sb get into the byte array?
//MessageBox.Show(request.ContentLength.ToString()); <= shows "112" (seems right)
request.KeepAlive = false;
request.ContentType = "application/xml";
try
{
Stream requestStream = request.GetRequestStream();
// now test this: MessageBox.Show() below causing exception? See https://stackoverflow.com/questions/22358231/why-is-the-httpwebrequest-body-val-null-after-crossing-the-rubicon
//MessageBox.Show(string.Format("requestStream length is {0}", requestStream.Length.ToString()));
requestStream.Write(postBytes, 0, postBytes.Length);
MessageBox.Show(string.Format("requestStream length is {0}", requestStream.Length.ToString()));
requestStream.Close();
using (var response = (HttpWebResponse)request.GetResponse())
{
return response.ToString();
}
}
catch (Exception ex)
{
MessageBox.Show("SendXMLFile exception " + ex.Message);
request.Abort();
return string.Empty;
}
}
}
...이 일을 할 것 같다 :
0) Reads the contents of the file at xmlFilepath and puts it into a StreamReader ("sr")
1) A StringBuilder ("sb") is populated with the contents of the StreamReader
2) The contents of the StringBuilder are put into an array of Bytes ("postBytes")
- then here comes the weird part (or so it seems to me, after analyzing the code more closely):
3) The contents of the array of bytes are written to a Stream ("requestStream")
4) The Stream is closed (???)
5) The HttpWebRequest ("request") attempts to return a HttpWebResponse by calling GetResponse()
- 그러나 "요청"무엇을 포함 않습니다,이 코드를 구체적으로? 내용 (StreamReader => StringBuilder => 바이트 배열 => 스트림)은 할당되지 않습니다! 코드 줄 작성, 프로세서 가열 및 작업 속도 저하라는 유일한 목적으로 스트림이있는 것처럼 보입니다!
이 코드는 무의미한 코드입니까, 아니면 그저 grokking하지 않았습니까?
대신'HttpClient'를 사용하십시오. 훨씬 쉽습니다. – SLaks
10 줄의 코드를'File.ReadAllBytes() '로 바꿀 수 있습니다. – SLaks
Compact Framework에서 HttpClient를 사용할 수 있다고 생각하지 않습니다. –