从字文件中的一个字节计数页面[] [关闭]
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了从字文件中的一个字节计数页面[] [关闭]相关的知识,希望对你有一定的参考价值。
是否有一种方法可以对当前为字节[]的单词文件的页数进行计数。在代码中,您可以看到我到目前为止所拥有的。 formLanguage是来自Db的一个实体,而FormFile是byte [],这里我确定它是一个单词。
FileStream file = File.Create("EditedFile");
file.Write(formLanguage.FormFile, 0, formLanguage.FormFile.Length);
try
{
var application = new Application();
var document = application.Documents.Open(file);
}
catch (Exception e)
{
Console.WriteLine(e);
}
答案
您可以尝试以下方式:
byte[] bytesDoc = byteFromDatabase();
var tempFile = Path.Combine(Path.GetTempPath(), formLanguage.FileName);
//Write to a temp file
File.WriteAllBytes(tempFile , bytesDoc );
var app = new Microsoft.Office.Interop.Word.Application();
Document doc = app.Documents.Open(tempFile);
var pageCount = doc.ComputeStatistics(
Microsoft.Office.Interop.Word.WdStatistic.wdStatisticPages);
doc.Close();
app.Quit();
以上是关于从字文件中的一个字节计数页面[] [关闭]的主要内容,如果未能解决你的问题,请参考以下文章