我试图从 jQuery 表单帖子上传文件。我使用了以下 html 和 jQuery 代码:
<form id="file_upload_form" method="post" enctype="multipart/form-data" action="">
<input type="file" name="uploadcv" id="uploadcv" size="30" />
</form>
Javascript:
var url = ServiceLocation + "/UploadFile"; //ServiceLocation = my service location
$("#file_upload_form").attr("action", url);
$("#file_upload_form").submit();
在 WCF 部分中,我使用了以下服务方法
public string UploadFile(Stream inputStream)
{
const int bufferSize = 8 * 1024 * 2;
byte[] buffer = new byte[bufferSize];
int bytesRead = inputStream.Read(buffer, 0, bufferSize);
Stream outputStream = null;
string newFileName = @"D:\AllTxtFiles.doc";
outputStream = new FileInfo(newFileName).OpenWrite();
while (bytesRead > 0)
{
outputStream.Write(buffer, 0, bufferSize);
bytesRead = inputStream.Read(buffer, 0, bufferSize);
}
inputStream.Close();
outputStream.Close();
}
当我尝试上传.txt
文件时,这有效。但是,我需要上传.doc
具有不同表格和格式的文件。
当我试图这样做时,AllTxtFiles.doc
包含一些难以理解的文本。
我尝试并搜索了一整天,但失败了(可能是因为我是 WCF 的新手)。谁能帮我做到这一点?