web-dev-qa-db-ja.com

Httpリクエストをバイト配列に読み込む

HTTPポストリクエストを取得し、さらに処理するためにバイト配列に読み込む必要があるWebページを開発しています。私はこれをどうやってやるかにこだわっており、達成するための最良の方法は何かに困惑しています。ここに私のコードがあります:

 public override void ProcessRequest(HttpContext curContext)
    {
        if (curContext != null)
        {
            int totalBytes = curContext.Request.TotalBytes;
            string encoding = curContext.Request.ContentEncoding.ToString();
            int reqLength = curContext.Request.ContentLength;
            long inputLength = curContext.Request.InputStream.Length;
            Stream str = curContext.Request.InputStream;

         }
       }

要求の長さと128に等しい合計バイト数をチェックしています。今度は、Streamオブジェクトを使用してbyte []形式にする必要がありますか?私は正しい方向に進んでいますか?続行方法がわからない。どんなアドバイスも素晴らしいでしょう。 HTTPリクエスト全体をbyte []フィールドに入れる必要があります。

ありがとう!

30
Encryption

最も簡単な方法は、それをMemoryStreamにコピーすることです-必要であればToArrayを呼び出します。

.NET 4を使用している場合、それは本当に簡単です。

MemoryStream ms = new MemoryStream();
curContext.Request.InputStream.CopyTo(ms);
// If you need it...
byte[] data = ms.ToArray();

編集:.NET 4を使用していない場合は、CopyToの独自の実装を作成できます。拡張メソッドとして機能するバージョンは次のとおりです。

public static void CopyTo(this Stream source, Stream destination)
{
    // TODO: Argument validation
    byte[] buffer = new byte[16384]; // For example...
    int bytesRead;
    while ((bytesRead = source.Read(buffer, 0, buffer.Length)) > 0)
    {
        destination.Write(buffer, 0, bytesRead);
    }
}
56
Jon Skeet

あなたはそのためにWebClientを使用することができます...

WebClient c = new WebClient();
byte [] responseData = c.DownloadData(..)

どこ..は、データのURLアドレスです。

17
feroze

MemoryStreamResponse.GetResponseStream().CopyTo(stream)を使用します

HttpWebRequest myRequest = (HttpWebRequest)WebRequest.Create(url);
myRequest.Method = "GET";
WebResponse myResponse = myRequest.GetResponse();
MemoryStream ms = new MemoryStream();
myResponse.GetResponseStream().CopyTo(ms);
byte[] data = ms.ToArray();
1
Phong Tran

応答ストリームを送信することにより、それを行う関数があります。

private byte[] ReadFully(Stream input)
{
    try
    {
        int bytesBuffer = 1024;
        byte[] buffer = new byte[bytesBuffer];
        using (MemoryStream ms = new MemoryStream())
        {
            int readBytes;
            while ((readBytes = input.Read(buffer, 0, buffer.Length)) > 0)
            {
               ms.Write(buffer, 0, readBytes);
            }
            return ms.ToArray();
        }
    }
    catch (Exception ex)
    {
        // Exception handling here:  Response.Write("Ex.: " + ex.Message);
    }
}

Stream str = curContext.Request.InputStream;、あなたはそれからちょうどすることができます:

byte[] bytes = ReadFully(str);

これを行った場合:

HttpWebRequest req = (HttpWebRequest)WebRequest.Create(someUri);
req.Credentials = CredentialCache.DefaultCredentials;
HttpWebResponse resp = (HttpWebResponse)req.GetResponse();

次のように呼び出します。

byte[] bytes = ReadFully(resp.GetResponseStream());
1
vapcguy
class WebFetch
{
static void Main(string[] args)
{
    // used to build entire input
    StringBuilder sb = new StringBuilder();

    // used on each read operation
    byte[] buf = new byte[8192];

    // prepare the web page we will be asking for
    HttpWebRequest request = (HttpWebRequest)
        WebRequest.Create(@"http://www.google.com/search?q=google");

    // execute the request
    HttpWebResponse response = (HttpWebResponse)
        request.GetResponse();

    // we will read data via the response stream
    Stream resStream = response.GetResponseStream();

    string tempString = null;
    int count = 0;

    do
    {
        // fill the buffer with data
        count = resStream.Read(buf, 0, buf.Length);

        // make sure we read some data
        if (count != 0)
        {
            // translate from bytes to ASCII text
            tempString = Encoding.ASCII.GetString(buf, 0, count);

            // continue building the string
            sb.Append(tempString);
        }
    }
    while (count > 0); // any more data to read?

    // print out page source
    Console.WriteLine(sb.ToString());
    Console.Read();
    }
}
0
Dasarp