【推荐】2019 Java 开发者跳槽指南.pdf(吐血整理) >>>
Aspose.Words for .Net(点击下载)是一种高级Word文档处理API,用于执行各种文档管理和操作任务。API支持生成,修改,转换,呈现和打印文档,而无需在跨平台应用程序中直接使用Microsoft Word。
Aspose.Words API提供了将Microsoft Word文档从DOC或DOCX格式序列化为字节数组的最简单方法。将文档存储到数据库中和/或从数据库中检索时,将Word文档转换为字节数组很有帮助。
.NET的Aspose.Words可用于转换Document对象,以获取表示任何.NET应用程序中Document的字节数组。以下代码段演示了DOC文件到字节数组的转换。
// Load the document from disk. Document doc = new Document("Sample.doc"); // Create a new memory stream. MemoryStream outStream = new MemoryStream(); // Save the document to stream. doc.Save(outStream, SaveFormat.Docx); // Convert the document to byte form. byte[] docBytes = outStream.ToArray(); // The bytes are now ready to be stored/transmitted. // Now reverse the steps to load the bytes back into a document object. MemoryStream inStream = new MemoryStream(docBytes); // Load the stream into a new document object. Document loadDoc = new Document(inStream); // Save the document. loadDoc.Save("loadDoc.docx",SaveFormat.Docx);
以下代码段演示了如何使用Aspose.Words for Java API 将DOC文件转换为字节数组。
// Load the document. Document doc = new Document("Sample.doc"); // Create a new memory stream. ByteArrayOutputStream outStream = new ByteArrayOutputStream(); // Save the document to stream. doc.save(outStream, SaveFormat.DOCX); // Convert the document to byte form. byte[] docBytes = outStream.toByteArray(); // The bytes are now ready to be stored/transmitted. // Now reverse the steps to load the bytes back into a document object. ByteArrayInputStream inStream = new ByteArrayInputStream(docBytes); // Load the stream into a new document object. Document loadDoc = new Document(inStream); // Save the document. loadDoc.Save("loadDoc.docx",SaveFormat.Docx);
如果您有任何疑问或需求,请随时加入Aspose技术交流群(642018183),很高兴为您提供查询和咨询。
来源:oschina
链接:https://my.oschina.net/u/4087915/blog/3141585