zoukankan      html  css  js  c++  java
  • 代码示例:调用SPS提供的remoting服务,在线把Office文档转换成html文档


    可以把office文档中的图片等文件一齐转换,效果不错

    using System;

    namespace ToHtmlLibrary
    {
        
    /// <summary>
        
    /// EDocumentType 的摘要说明。
        
    /// </summary>

        public enum EDocumentType
        
    {
            Word,
            Excel,
            PowerPoint,
            Unknow

        }

    }



    using System;
    using System.IO;
    using Microsoft.HtmlTrans;

    namespace ToHtmlLibrary.Core
    {
        
    /// <summary>
        
    /// 把Office文档转换成html文档
        
    /// </summary>

        public class TransToHtml
        
    {
            
    Field 
            
    Property 
            
    Constructor
            
    Private Method
            
    Public Method 
        }

    }


    我的个人主页

  • 相关阅读:
    C语言知识点
    VS Studio 相关知识点
    类——继承、复合、委托
    类(传入的形参为指针形式)-字符串的实现
    类(传入的形参为非指针形式)-复数的实现
    C++需要掌握的重点内容
    目标跟踪相关资料
    夏天在威海,冬天在昆明
    短时目标跟踪
    php实现中文反转字符串的方法
  • 原文地址:https://www.cnblogs.com/umlchina/p/spstohtml.html
Copyright © 2011-2022 走看看