彩票走势图

Word控件Spire.Doc 【文档操作】教程(七):在 C#、VB.NET 中从 URL 下载 Word 文档

原创|行业资讯|编辑:胡涛|2022-04-07 16:38:07.603|阅读 146 次

概述:本篇文章主要介绍了如何使用Spire.Doc 在 C#、VB.NET 中从 URL 下载 Word 文档,欢迎查阅!

# 慧都年终大促·界面/图表报表/文档/IDE等千款热门软控件火热促销中 >>

相关链接:

如今,我们面临着从 URL 下载文件的更大机会,因为更多的文件是通过互联网以电子方式传递的。在本文中,我将介绍如何在 C#、VB.NET 中使用 Spire.Doc 以编程方式从 URL 下载 Word 文档。

Spire.Doc 不提供直接从 URL 下载 Word 文件的方法。但是,您可以将文件从 URL 下载到 MemoryStream 中,然后使用 Spire.Doc for .NET MemoryStream 加载文档并作为新的 Word 文档保存到本地文件夹。

Spire.Doc for.NET 最新下载

代码片段:

第 1 步初始化一个新的 Word 文档。

Document doc = new Document();

第 2 步初始化 WebClient 类的新实例。

WebClient webClient = new WebClient();

第 3 步:调用WebClient.DownloadData(string address)方法从 URL 加载数据。将数据保存到 MemoryStream,然后调用Document.LoadFromStream()方法从 MemoryStream 加载 Word 文档。

using (MemoryStream ms = new MemoryStream(webClient.DownloadData("//www.e-iceblue.com/images/test.docx")))
{
doc.LoadFromStream(ms,FileFormat.Docx);
}

第 4 步保存文件。

doc.SaveToFile("result.docx",FileFormat.Docx);

运行程序,目标文件将被下载并保存为 Bin 文件夹中的新 Word 文件。

如何在 C#、VB.NET 中从 URL 下载 Word 文档

完整代码

[C#]

using Spire.Doc;
using System.IO;
using System.Net;

namespace DownloadfromURL
{
class Program
{
static void Main(string[] args)
{
Document doc = new Document();
WebClient webClient = new WebClient();
using (MemoryStream ms = new MemoryStream(webClient.DownloadData("//www.e-iceblue.com/images/test.docx")))
{
doc.LoadFromStream(ms, FileFormat.Docx);
}
doc.SaveToFile("result.docx", FileFormat.Docx);
}
}
}

[VB.NET]

Imports Spire.Doc
Imports System.IO
Imports System.Net
Namespace DownloadfromURL
Class Program
Private Shared Sub Main(args As String())
Dim doc As New Document()
Dim webClient As New WebClient()
Using ms As New MemoryStream(webClient.DownloadData("//www.e-iceblue.com/images/test.docx"))
doc.LoadFromStream(ms, FileFormat.Docx)
End Using
doc.SaveToFile("result.docx", FileFormat.Docx)

End Sub
End Class
End Namespace

欢迎下载|体验更多E-iceblue产品

如需获取更多产品相关信息请咨询  

aspose22.1最新版



标签:

本站文章除注明转载外,均为本站原创或翻译。欢迎任何形式的转载,但请务必注明出处、不得修改原文相关链接,如果存在内容上的异议请邮件反馈至chenjj@pclwef.cn


为你推荐

  • 推荐视频
  • 推荐活动
  • 推荐产品
  • 推荐文章
  • 慧都慧问
扫码咨询


添加微信 立即咨询

电话咨询

客服热线
023-68661681

TOP