• linkedu视频
  • 平面设计
  • 电脑入门
  • 操作系统
  • 办公应用
  • 电脑硬件
  • 动画设计
  • 3D设计
  • 网页设计
  • CAD设计
  • 影音处理
  • 数据库
  • 程序设计
  • 认证考试
  • 信息管理
  • 信息安全
菜单
linkedu.com
  • 网页制作
  • 数据库
  • 程序设计
  • 操作系统
  • CMS教程
  • 游戏攻略
  • 脚本语言
  • 平面设计
  • 软件教程
  • 网络安全
  • 电脑知识
  • 服务器
  • 视频教程
  • JavaScript
  • ASP.NET
  • PHP
  • 正则表达式
  • AJAX
  • JSP
  • ASP
  • Flex
  • XML
  • 编程技巧
  • Android
  • swift
  • C#教程
  • vb
  • vb.net
  • C语言
  • Java
  • Delphi
  • 易语言
  • vc/mfc
  • 嵌入式开发
  • 游戏开发
  • ios
  • 编程问答
  • 汇编语言
  • 微信小程序
  • 数据结构
  • OpenGL
  • 架构设计
  • qt
  • 微信公众号
您的位置:首页 > 程序设计 >C#教程 > C#实现HTML转WORD及WORD转PDF的方法

C#实现HTML转WORD及WORD转PDF的方法

作者:清清飞扬 字体:[增加 减小] 来源:互联网 时间:2017-05-28

清清飞扬 通过本文主要向大家介绍了c站,c语言,欲情 c max,奔驰c200,85度c等相关知识,希望对您有所帮助,也希望大家支持linkedu.com www.linkedu.com

本文实例讲述了C#实现HTML转WORD及WORD转PDF的方法。分享给大家供大家参考。具体如下:

功能:实现HTML转WORD,WORD转PDF

具体代码如下:

using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Data;
using System.Drawing;
using System.Text;
using System.Windows.Forms;
using Word = Microsoft.Office.Interop.Word;
using oWord = Microsoft.Office.Interop.Word;
using System.Reflection;
using System.Configuration;
using System.Web;
using System.Web.Security;
using System.Web.UI;
using System.Web.UI.WebControls;
using System.Web.UI.WebControls.WebParts;
using System.Web.UI.HtmlControls;
using Microsoft.Office.Core;
using System.Text.RegularExpressions;
namespace WindowsApplication2
{
 public partial class Form1 : Form
 {
  public Form1()
  {
   InitializeComponent();
  }
  private void button1_Click(object sender, EventArgs e)
  {
   object oMissing = System.Reflection.Missing.Value;
   object oEndOfDoc = "\\endofdoc"; /* \endofdoc is a predefined bookmark */
   //Start Word and create a new document.
   Word._Application oWord;
   Word._Document oDoc;
   oWord = new Word.Application();
   oWord.Visible = true;
   oDoc = oWord.Documents.Add(ref oMissing, ref oMissing,
    ref oMissing, ref oMissing);
   //Insert a paragraph at the beginning of the document.
   Word.Paragraph oPara1;
   oPara1 = oDoc.Content.Paragraphs.Add(ref oMissing);
   oPara1.Range.Text = "Heading 1";
   oPara1.Range.Font.Bold = 1;
   oPara1.Format.SpaceAfter = 24; //24 pt spacing after paragraph.
   oPara1.Range.InsertParagraphAfter();
   //Insert a paragraph at the end of the document.
   Word.Paragraph oPara2;
   object oRng = oDoc.Bookmarks.get_Item(ref oEndOfDoc).Range;
   oPara2 = oDoc.Content.Paragraphs.Add(ref oRng);
   oPara2.Range.Text = "Heading 2";
   oPara2.Format.SpaceAfter = 6;
   oPara2.Range.InsertParagraphAfter();
   //Insert another paragraph.
   Word.Paragraph oPara3;
   oRng = oDoc.Bookmarks.get_Item(ref oEndOfDoc).Range;
   oPara3 = oDoc.Content.Paragraphs.Add(ref oRng);
   oPara3.Range.Text = "This is a sentence of normal text. Now here is a table:";
   oPara3.Range.Font.Bold = 0;
   oPara3.Format.SpaceAfter = 24;
   oPara3.Range.InsertParagraphAfter();
   //Insert a 3 x 5 table, fill it with data, and make the first row
   //bold and italic.
   Word.Table oTable;
   Word.Range wrdRng = oDoc.Bookmarks.get_Item(ref oEndOfDoc).Range;
   oTable = oDoc.Tables.Add(wrdRng, 3, 5, ref oMissing, ref oMissing);
   oTable.Range.ParagraphFormat.SpaceAfter = 6;
   int r, c;
   string strText;
   for (r = 1; r <= 3; r++)
    for (c = 1; c <= 5; c++)
    {
     strText = "r" + r + "c" + c;
     oTable.Cell(r, c).Range.Text = strText;
    }
   oTable.Rows[1].Range.Font.Bold = 1;
   oTable.Rows[1].Range.Font.Italic = 1;
   //Add some text after the table.
   Word.Paragraph oPara4;
   oRng = oDoc.Bookmarks.get_Item(ref oEndOfDoc).Range;
   oPara4 = oDoc.Content.Paragraphs.Add(ref oRng);
   oPara4.Range.InsertParagraphBefore();
   oPara4.Range.Text = "And here's another table:";
   oPara4.Format.SpaceAfter = 24;
   oPara4.Range.InsertParagraphAfter();
   //Insert a 5 x 2 table, fill it with data, and change the column widths.
   wrdRng = oDoc.Bookmarks.get_Item(ref oEndOfDoc).Range;
   oTable = oDoc.Tables.Add(wrdRng, 5, 2, ref oMissing, ref oMissing);
   oTable.Range.ParagraphFormat.SpaceAfter = 6;
   for (r = 1; r <= 5; r++)
    for (c = 1; c <= 2; c++)
    {
     strText = "r" + r + "c" + c;
     oTable.Cell(r, c).Range.Text = strText;
    }
   oTable.Columns[1].Width = oWord.InchesToPoints(2); //Change width of columns 1 & 2
   oTable.Columns[2].Width = oWord.InchesToPoints(3);
   //Keep inserting text. When you get to 7 inches from top of the
   //document, insert a hard page break.
   object oPos;
   double dPos = oWord.InchesToPoints(7);
   oDoc.Bookmarks.get_Item(ref oEndOfDoc).Range.InsertParagraphAfter();
   do
   {
    wrdRng = oDoc.Bookmarks.get_Item(ref oEndOfDoc).Range;
    wrdRng.ParagraphFormat.SpaceAfter = 6;
    wrdRng.InsertAfter("A line of text");
    wrdRng.InsertParagraphAfter();
    oPos = wrdRng.get_Information
        (Word.WdInformation.wdVerticalPositionRelativeToPage);
   }
   while (dPos >= Convert.ToDouble(oPos));
   object oCollapseEnd = Word.WdCollapseDirection.wdCollapseEnd;
   object oPageBreak = Word.WdBreakType.wdPageBreak;
   wrdRng.Collapse(ref oCollapseEnd);
   wrdRng.InsertBreak(ref oPageBreak);
   wrdRng.Collapse(ref oCollapseEnd);
   wrdRng.InsertAfter("We're now on page 2. Here's my chart:");
   wrdRng.InsertParagraphAfter();
   //Insert a chart.
   Word.InlineShape oShape;
   object oClassType = "MSGraph.Chart.8";
   wrdRng = oDoc.Bookmarks.get_Item(ref oEndOfDoc).Range;
   oShape = wrdRng.InlineShapes.AddOLEObject(ref oClassType, ref oMissing,
    ref oMissing, ref oMissing, ref oMissing,
    ref oMissing, ref oMissing, ref oMissing);
   //Demonstrate use of late bound oChart and oChartApp objects to
   //manipulate the chart object with MSGraph.
   object oChart;
   object oChartApp;
   oChart = oShape.OLEFormat.Object;
   oChartApp = oChart.GetType().InvokeMember("Application",
    BindingFlags.GetProperty, null, oChart, null);
   //Change the chart type to Line.
   object[] Parameters = new Object[1];
   Parameters[0] = 4; //xlLine = 4
   oChart.GetType().InvokeMember("ChartType", BindingFlags.SetProperty,
    null, oChart, Parameters);
   //Update the chart image and quit MSGraph.
   oChartApp.GetType().InvokeMember("Update",
    BindingFlags.InvokeMethod, null, oChartApp, null);
   oChartApp.GetType().InvokeMember("Quit",
    BindingFlags.InvokeMethod, null, oChartApp, null);
   //... If desired, you can proceed from here using the Microsoft Graph 
   //Object model on the oChart and oChartApp objects to make additional
   //changes to the chart.
   //Set the width of the chart.
   oShape.Width = oWord.InchesToPoints(6.25f);
   oShape.Height = oWord.InchesToPoints(3.57f);
   //Add text after the chart.
   wrdRng = oDoc.Bookmarks.get_Item(ref oEndOfDoc).Range;
   wrdRng.InsertParagraphAfter();
   wrdRng.InsertAfter("THE END.");
   //Close this form.
   this.Close();
  }
  private void button2_Click(object sender, EventArgs e)
  {
   string s = "";
   if (openFileDialog1.ShowDialog() == DialogResult.OK)
   {
    s = openFileDialog1.FileName;
   }
   else
   {
    return;
   }
   // 在此处放置用户代码以初始化页面
   Word.ApplicationClass word = new Word.ApplicationClass();
   Type wordType = word.GetType();
   Word.Documents docs = word.Documents;
   // 打开文件
   Type docsType = docs.GetType();
   object fileName = s;
   Word.Document doc = (Word.Document)docsType.InvokeMember("Open",
   System.Reflection.BindingFlags.InvokeMethod, null, docs, new Object[] { fileName, false, false });
   // 转换格式,另存为
   Type docType = doc.GetType();
   object saveFileName = "d:\\Reports\\aaa.doc";
   //下面是Microsoft Word 9 Object Library的写法,如果是10,可能写成:
   /*
   docType.InvokeMember("SaveAs", System.Reflection.BindingFlags.InvokeMethod,
    null, doc, new object[]{saveFileName, Word.WdSaveFormat.wdFormatFilteredHTML});
   */
   ///其它格式:
   ///wdFormatHTML
   ///wdFormatDocument
   ///wdFormatDOSText
   ///wdFormatDOSTextLineBreaks
   ///wdFormatEncodedText
   ///wdFormatRTF
   ///wdFormatTemplate
   ///wdFormatText
   ///wdFormatTextLineBreaks
   ///wdFormatUnicodeText
   docType.InvokeMember("SaveAs", System.Reflection.BindingFlags.InvokeMethod,
    null, doc, new object[] { saveFileName, Word.WdSaveFormat.wdFormatDocument });
   // 退出 Word
   wordType.InvokeMember("Quit", System.Reflection.BindingFlags.InvokeMethod,
    null, word, null);
  }
  private void WordConvert(string s)
  {
   oWord.Applica



 
分享到:QQ空间新浪微博腾讯微博微信百度贴吧QQ好友复制网址打印

您可能想查找下面的文章:

  • C# 检索不区分大小写并高亮显示实例详解
  • C#实现Base64处理的加密解密,编码解码示例
  • C# SqlHelper应用开发学习
  • C#多线程经典示例(吃苹果)
  • C#使用Windows Service的简单教程(创建、安装、卸载、调试)
  • C# 6.0 的知识梳理
  • C#向PPT文档插入图片以及导出图片的实例
  • C#使用Jquery zTree实现树状结构显示 异步数据加载
  • C#清理非托管对象实例分析
  • C#双缓冲技术实例详解

相关文章

  • 2017-05-28C#通过正则表达式实现提取网页中的图片
  • 2017-05-28C# 使用匿名函数解决EventHandler参数传递的难题
  • 2017-05-28C# Winform下载文件并显示进度条的实现代码
  • 2017-05-28winform 使用Anchor属性进行界面布局的方法详解
  • 2017-05-28解决C# 截取当前程序窗口指定位置截图的实现方法
  • 2017-05-28C#探秘系列(一)——ToDictionary,ToLookup
  • 2017-05-28C# 创建报表过程详解
  • 2017-05-28c#高效率导出多维表头excel的实例代码
  • 2017-05-28C#中查找Dictionary中的重复值的方法
  • 2017-05-28C#基于DBContext(EF)实现通用增删改查的REST方法实例

文章分类

  • JavaScript
  • ASP.NET
  • PHP
  • 正则表达式
  • AJAX
  • JSP
  • ASP
  • Flex
  • XML
  • 编程技巧
  • Android
  • swift
  • C#教程
  • vb
  • vb.net
  • C语言
  • Java
  • Delphi
  • 易语言
  • vc/mfc
  • 嵌入式开发
  • 游戏开发
  • ios
  • 编程问答
  • 汇编语言
  • 微信小程序
  • 数据结构
  • OpenGL
  • 架构设计
  • qt
  • 微信公众号

最近更新的内容

    • C#中把日志导出到txt文本的简单实例
    • C#华氏温度和摄氏温度相互转换的方法
    • C#使用Socket发送和接收TCP数据实例
    • 用C#缩小照片上传到各种空间的具体方法
    • C#特性之匿名方法和Lambda表达式
    • C#控制台程序实现开启、关闭SQLServer服务的代码分享
    • C#实现动态显示及动态移除图片方法
    • C#常用字符串加密解密方法封装代码
    • C# MeasureString测量字符串函数的使用方法
    • C#查找对象在ArrayList中出现位置的方法

关于我们 - 联系我们 - 免责声明 - 网站地图

©2020-2025 All Rights Reserved. linkedu.com 版权所有