在 Windows Phone 和 Windows 8 中使用 HTTP POST 多部分/表单数据将文件上传到服务器
将文件上传到 Web 服务器是一种移动开发中的常见任务。在本指南中,我们将探索如何使用 Windows Phone 8 和使用本机 API 的 Windows 8 通过 HTTP POST multipart/form-data 来实现此目的。
Windows Phone 8 实现
您尝试使用带有 multipart/form-data 的 HTTP POST 将文件上传到 PHP Web 服务,但遇到了问题。您的代码未按预期传递“userid”参数。要解决此问题,请修改您的代码以在表单数据中包含“userid”参数。
以下是如何执行此操作的示例:
private void GetRequestStreamCallback(IAsyncResult asynchronousResult, byte[] postData) { HttpWebRequest request = (HttpWebRequest)asynchronousResult.AsyncState; Stream postStream = request.EndGetRequestStream(asynchronousResult); string boundary = "---------------------------" + DateTime.Now.Ticks.ToString("x"); byte[] boundary_bytes = Encoding.ASCII.GetBytes("\r\n--" + boundary + "\r\n"); // Write the "userid" parameter postStream.Write(boundary_bytes, 0, boundary_bytes.Length); byte[] userid_bytes = Encoding.ASCII.GetBytes("Content-Disposition: form-data; name=\"userid\"\r\n\r\n" + "SOME_ID" + "\r\n"); postStream.Write(userid_bytes, 0, userid_bytes.Length); // Write the file data postStream.Write(boundary_bytes, 0, boundary_bytes.Length); byte[] file_content_disposition_bytes = Encoding.ASCII.GetBytes("Content-Disposition: form-data; name=\"file\"; filename=\"database.sqlite\"\r\nContent-Type: application/octet-stream\r\n\r\n"); postStream.Write(file_content_disposition_bytes, 0, file_content_disposition_bytes.Length); postStream.Write(postData, 0, postData.Length); // Write the ending boundary postStream.Write(boundary_bytes, 0, boundary_bytes.Length); byte[] end_boundary = Encoding.ASCII.GetBytes("\r\n--" + boundary + "--\r\n"); postStream.Write(end_boundary, 0, end_boundary.Length); postStream.Close(); var asyncResult = request.BeginGetResponse(new AsyncCallback(GetResponseCallback), request); }
在此代码中,“userid” " 参数与文件数据一起传递。确保您的 PHP Web 服务需要此格式的参数。
Windows 8 实施
对于 Windows 8,您尝试使用 HttpClient 和 MultipartFormDataContent 上传文件,但也失败了。问题可能在于文件数据的内容类型不正确。修改您的代码以指定正确的内容类型:
form.Add(new ByteArrayContent(file_bytes, 0, file_bytes.Length), "file", "hello1.jpg", "application/octet-stream");
此代码正确地将文件数据的内容类型设置为“application/octet-stream”。
附加注释
以上是如何在 Windows Phone 8 和 Windows 8 中使用 HTTP POST Multipart/Form-Data 将文件上传到服务器?的详细内容。更多信息请关注PHP中文网其他相关文章!