应用程序“A”需要使用 POST 将 word 文件 [作为字节数组] 上传到外部应用程序。
文件内容应作为命名参数添加到请求正文中,并且必须发出 POST 请求才能上传文件。
我有一个示例代码,但在 java 中。我想编写一个等效的 C# 代码。但在 C# 中,找不到类似 MultiPartEntity 的对象。
java代码片段:
String restURL = HOSTURL + "/rest/upload/0b002f4780293c18";
String fileName = "testRestUploadByFolderID" + Calendar.getInstance().getTimeInMillis() + ".txt";
File testFile = createNewFile("C:/Temp/rest/" + fileName);
FileBody content = new FileBody(testFile, "application/octet-stream");
System.out.println(" File Name : " + content.getFilename() + " ... " + content.getTransferEncoding());
MultipartEntity reqEntity = new MultipartEntity(HttpMultipartMode.BROWSER_COMPATIBLE);
reqEntity.addPart("filename", new StringBody(fileName));
reqEntity.addPart("uploadfile", content);
HttpPost httpPost = new HttpPost(restURL);
httpPost.addHeader("Accept", "application/json");
httpPost.setEntity(reqEntity);
// Post the request
String response = httpclient.execute(httpPost, new DefaultResponseHandler());
您能否发布一些链接来解释如何在 C# 中使用命名参数来上传文件内容
谢谢你。