首页 > 后端开发 > php教程 > 如何在 Windows Phone 8 中使用 HTTP POST Multipart/Form-Data 将文件上传到服务器?

如何在 Windows Phone 8 中使用 HTTP POST Multipart/Form-Data 将文件上传到服务器?

Barbara Streisand
发布: 2024-12-14 09:51:15
原创
546 人浏览过

How to Upload Files to a Server using HTTP POST Multipart/Form-Data in Windows Phone 8?

在 Windows Phone 8 中使用 HTTP POST Multipart/Form-Data 将文件上传到服务器

在 Windows Phone 8 中,通过 HTTP POST multipart/form 将文件上传到服务器-data 涉及使用 HttpWebRequest 类。实施方法如下:

async void MainPage_Loaded(object sender, RoutedEventArgs e)
{
    var file = await Windows.ApplicationModel.Package.Current.InstalledLocation.GetFileAsync(DBNAME);
    byte[] fileBytes = null;
    using (var stream = await file.OpenReadAsync())
    {
        fileBytes = new byte[stream.Size];
        using (var reader = new DataReader(stream))
        {
            await reader.LoadAsync((uint)stream.Size);
            reader.ReadBytes(fileBytes);
        }
    }
    
    // Construct HTTP request with multipart/form-data content type and userID data
    HttpWebRequest httpWebRequest = (HttpWebRequest)WebRequest.Create("http://www.myserver.com/upload.php");
    httpWebRequest.ContentType = "multipart/form-data";
    var boundary = "---------------------------" + DateTime.Now.Ticks.ToString("x");
    httpWebRequest.Method = "POST";
    
    // Begin obtaining request stream for writing file bytes and userID data
    var asyncResult = httpWebRequest.BeginGetRequestStream((ar) => { GetRequestStreamCallback(ar, fileBytes, boundary); }, httpWebRequest); 
}

private void GetRequestStreamCallback(IAsyncResult asynchronousResult, byte[] postData, string boundary)  
{
    HttpWebRequest request = (HttpWebRequest)asynchronousResult.AsyncState;  
    Stream postStream = request.EndGetRequestStream(asynchronousResult);  
    
    // Write file bytes to request stream
    postStream.Write(postData, 0, postData.Length);  
    
    // Write userID data to request stream
    var lineBreak = "\r\n";
    var formData = $"--{boundary}{lineBreak}Content-Disposition: form-data; name=\"userid\"{lineBreak}{lineBreak}SOME_ID{lineBreak}";
    var formDataBytes = System.Text.Encoding.UTF8.GetBytes(formData);
    postStream.Write(formDataBytes, 0, formDataBytes.Length);
    
    // Closing boundary string
    var closingBoundary = $"--{boundary}--{lineBreak}";
    var closingBoundaryBytes = System.Text.Encoding.UTF8.GetBytes(closingBoundary);
    postStream.Write(closingBoundaryBytes, 0, closingBoundaryBytes.Length);  
    
    postStream.Close();  
    var asyncResult = request.BeginGetResponse(new AsyncCallback(GetResponseCallback), request);  
}  

private void GetResponseCallback(IAsyncResult asynchronousResult)  
{  
    HttpWebRequest request = (HttpWebRequest)asynchronousResult.AsyncState;  
    HttpWebResponse response = (HttpWebResponse)request.EndGetResponse(asynchronousResult);  
    // ... Handle response
}  
登录后复制

以上是如何在 Windows Phone 8 中使用 HTTP POST Multipart/Form-Data 将文件上传到服务器?的详细内容。更多信息请关注PHP中文网其他相关文章!

来源:php.cn
本站声明
本文内容由网友自发贡献,版权归原作者所有,本站不承担相应法律责任。如您发现有涉嫌抄袭侵权的内容,请联系admin@php.cn
作者最新文章
热门教程
更多>
最新下载
更多>
网站特效
网站源码
网站素材
前端模板