WCF REST 서비스의 Multipart/Form-Data POST에서 파일 바이트 추출
웹 양식은 종종 multipart/form-data 콘텐츠 유형을 사용합니다. 웹 서비스에 파일을 게시합니다. 이를 통해 파일 전송이 쉬워지지만 다중 부분 본문에서 파일 바이트를 추출하는 것은 어려울 수 있습니다. 이 문제에 대한 한 가지 해결책은 .NET 4.5에 도입된 공개 Microsoft API를 활용하는 것입니다.
이 API를 활용하려면 System.Net.Http.dll 및 System.Net.Http.Formatting을 포함해야 합니다. 프로젝트에 dll을 추가하세요. .NET 4를 사용하는 경우 NuGet을 통해 이러한 어셈블리를 얻을 수 있습니다.
어셈블리가 준비되면 다음 코드를 사용하여 다중 부분 본문을 구문 분석하고 파일 바이트를 추출할 수 있습니다.
public static async Task ParseFiles( Stream data, string contentType, Action<string, Stream> fileProcessor) { // Create a stream content based on the input stream var streamContent = new StreamContent(data); // Set the content type header streamContent.Headers.ContentType = MediaTypeHeaderValue.Parse(contentType); // Read the multipart data as multipart content var provider = await streamContent.ReadAsMultipartAsync(); // Loop through each content retrieved from the multipart body foreach (var httpContent in provider.Contents) { // Get the file name var fileName = httpContent.Headers.ContentDisposition.FileName; // If there is a file name, ignore empty file names if (string.IsNullOrWhiteSpace(fileName)) { continue; } // Read the file content stream using (Stream fileContents = await httpContent.ReadAsStreamAsync()) { // Pass the file name and file content stream to the specified processor fileProcessor(fileName, fileContents); } } } ```` To use this code, you can create a custom file processor method, such as:
private void MyProcessMethod(문자열 이름, 스트림 내용)
{
// Your code to process the file data
}
위 내용은 WCF REST 서비스의 다중 부분/양식 데이터 POST에서 파일 바이트를 추출하는 방법은 무엇입니까?의 상세 내용입니다. 자세한 내용은 PHP 중국어 웹사이트의 기타 관련 기사를 참조하세요!