asp.net mvc中如何读取上传的doc文件中的数据(含有中文字符) 20
publicActionResultdealwithDoc(){foreach(stringinputTagnameinRequest.Files){HttpPosted...
public ActionResult dealwithDoc()
{
foreach (string inputTagname in Request.Files)
{
HttpPostedFileBase file = Request.Files[inputTagname];
Byte[] buff = new Byte[1024];
if (file.ContentLength > 0)
{
file.InputStream.Read(buff, 0, (int)file.InputStream.Length);//不知道这样可不可以从头到 //尾读取全部数据?
/*现在我想文档中的所有数据都已byte字节存放在数组中了,但是如何把byte数组转变成对应的 string数组,而且是含有中文的*/
}
}
return view();
}
上面是我尝试写的代码,求好心人帮助啊,我的最终目的就是读取上传的doc中的数据,将结果存放在一个string变量中。 展开
{
foreach (string inputTagname in Request.Files)
{
HttpPostedFileBase file = Request.Files[inputTagname];
Byte[] buff = new Byte[1024];
if (file.ContentLength > 0)
{
file.InputStream.Read(buff, 0, (int)file.InputStream.Length);//不知道这样可不可以从头到 //尾读取全部数据?
/*现在我想文档中的所有数据都已byte字节存放在数组中了,但是如何把byte数组转变成对应的 string数组,而且是含有中文的*/
}
}
return view();
}
上面是我尝试写的代码,求好心人帮助啊,我的最终目的就是读取上传的doc中的数据,将结果存放在一个string变量中。 展开
- 你的回答被采纳后将获得:
- 系统奖励15(财富值+成长值)+难题奖励10(财富值+成长值)+提问者悬赏20(财富值+成长值)
1个回答
2014-12-08
展开全部
using Aspose.Words;要引用这个dll
#region 获取正文内容
Byte[] wordbytes = GetReadWord();//获取文件二进制
var strFileName = Server.MapPath("~/temp/a.doc");
var strhtmlFileName = Server.MapPath("~/temp/b.htm");
var file = File.OpenWrite(strFileName);
file.Write(wordbytes, 0, wordbytes.Length);
file.Close();
file.Dispose();
Aspose.Words.Document d = new Aspose.Words.Document(strFileName);
d.Save(strhtmlFileName, SaveFormat.Html);
var htmlCode = File.ReadAllText(strhtmlFileName, Encoding.GetEncoding("GB2312"));
File.Delete(strFileName);
File.Delete(strhtmlFileName);
#endregion
htmlCode 字段就是获取的内容字符串
#region 获取正文内容
Byte[] wordbytes = GetReadWord();//获取文件二进制
var strFileName = Server.MapPath("~/temp/a.doc");
var strhtmlFileName = Server.MapPath("~/temp/b.htm");
var file = File.OpenWrite(strFileName);
file.Write(wordbytes, 0, wordbytes.Length);
file.Close();
file.Dispose();
Aspose.Words.Document d = new Aspose.Words.Document(strFileName);
d.Save(strhtmlFileName, SaveFormat.Html);
var htmlCode = File.ReadAllText(strhtmlFileName, Encoding.GetEncoding("GB2312"));
File.Delete(strFileName);
File.Delete(strhtmlFileName);
#endregion
htmlCode 字段就是获取的内容字符串
本回答被网友采纳
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询