1

System.IO.StreamこのようにAjaxFileUploadでファイルを取得したいです。これは古典的な FileUpload コンポーネントです。

System.IO.Stream theStream = fileUpload.PostedFile.InputStream;

誰かが私にやり方を教えてもらえますか?

4

3 に答える 3

2

ファイルを一時的に保存してから、それを読み取って FileStream を取得できます。少し汚いかもしれませんが、私にとってはうまくいきました。

VB.NET:

Dim tempPath As String = System.IO.Path.GetTempFileName()
yourAjaxFileUpload.SaveAs(tempPath)
Using fs As FileStream = File.OpenRead(tempPath)
    'Do stuff with fs here
End Using
File.Delete(tempPath)

C#:

string tempPath = System.IO.Path.GetTempFileName();
yourAjaxFileUpload.SaveAs(tempPath);
using (FileStream fs = File.OpenRead(tempPath)) {
    //do stuff with fs here
}
File.Delete(tempPath);
于 2013-04-25T12:24:53.750 に答える