成人午夜视频全免费观看高清-秋霞福利视频一区二区三区-国产精品久久久久电影小说-亚洲不卡区三一区三区一区

.NET實(shí)現(xiàn)在網(wǎng)頁中預(yù)覽Office文件的方法有哪些-創(chuàng)新互聯(lián)

本篇內(nèi)容主要講解“.NET實(shí)現(xiàn)在網(wǎng)頁中預(yù)覽Office文件的方法有哪些”,感興趣的朋友不妨來看看。本文介紹的方法操作簡單快捷,實(shí)用性強(qiáng)。下面就讓小編來帶大家學(xué)習(xí)“.NET實(shí)現(xiàn)在網(wǎng)頁中預(yù)覽Office文件的方法有哪些”吧!

站在用戶的角度思考問題,與客戶深入溝通,找到大連網(wǎng)站設(shè)計(jì)與大連網(wǎng)站推廣的解決方案,憑借多年的經(jīng)驗(yàn),讓設(shè)計(jì)與互聯(lián)網(wǎng)技術(shù)結(jié)合,創(chuàng)造個(gè)性化、用戶體驗(yàn)好的作品,建站類型包括:成都網(wǎng)站設(shè)計(jì)、成都網(wǎng)站制作、企業(yè)官網(wǎng)、英文網(wǎng)站、手機(jī)端網(wǎng)站、網(wǎng)站推廣、空間域名、網(wǎng)絡(luò)空間、企業(yè)郵箱。業(yè)務(wù)覆蓋大連地區(qū)。

近日公司要搞一個(gè)日常的文檔管理的東東,可以上傳、下載各種文件,如果是office文件呢還必須得支持預(yù)覽功能,其他的都好說但是唯獨(dú)office預(yù)覽功能比較麻煩,但是不能不做,廢話不多說了一步步來吧。分析了下網(wǎng)易郵箱的文件預(yù)覽功能,他用的是微軟的組件,最早叫Office online,現(xiàn)在分開了叫Word online、Excel online ....等等,效果十分炫酷功能十分強(qiáng)大,但是查看了下對api的說明發(fā)現(xiàn)對服務(wù)器的要求比較苛刻而且配置比較復(fù)雜不太適合。然后 又看了下騰訊用的是永中第三方組件,效果嘛自然比不上微軟的但是能用,綜合網(wǎng)上的一些資料大概也就那么幾種方式實(shí)現(xiàn)

1.使用Microsoft的Office組件將文件直接轉(zhuǎn)換為html文件(優(yōu)點(diǎn):代碼實(shí)現(xiàn)最簡單,工作強(qiáng)度最小。缺點(diǎn):效果極差)

2.使用Microsoft的Office組件將文件轉(zhuǎn)換為PDF格式文件,然后再使用pdf2swf轉(zhuǎn)換為swf文件,也就是flash文件在使用FlexPaper展示出來(優(yōu)點(diǎn):預(yù)覽效果能接受,缺點(diǎn):代碼量大)

效果如圖:

.NET實(shí)現(xiàn)在網(wǎng)頁中預(yù)覽Office文件的方法有哪些

3. 使用Office online(優(yōu)點(diǎn):表現(xiàn)完美,缺點(diǎn):不適合中小企業(yè)應(yīng)用)

綜合考慮決定使用第二種方法,經(jīng)過次次波折終于可以使用,但是有個(gè)問題至今沒有得到解決,調(diào)用Office組件的時(shí)候有時(shí)候會(huì)出現(xiàn)如下異常:

檢索 COM 類工廠中 CLSID 為 {000209FF-0000-0000-C000-000000000046} 的組件失敗,原因是出現(xiàn)以下錯(cuò)誤: 8000401a 因?yàn)榕渲脴?biāo)識不正確,系統(tǒng)無法開始服務(wù)器進(jìn)程。請檢查用戶名和密碼。 (異常來自 HRESULT:0x8000401A),查閱無數(shù)資料還是不能解決,最讓人不可接受的的是office文件必須標(biāo)標(biāo)準(zhǔn)準(zhǔn)毫無容錯(cuò)能力,當(dāng)轉(zhuǎn)換ppt文件時(shí)竟然會(huì)彈出轉(zhuǎn)換進(jìn)度框??!

好吧!那么我們改進(jìn)它。

使用ASPOSE+pdf2swf+FlexPaper

關(guān)于ASPOSE大家可以到官網(wǎng)了解,這是款商業(yè)收費(fèi)產(chǎn)品但是免費(fèi)也可以使用

1、引用dll

.NET實(shí)現(xiàn)在網(wǎng)頁中預(yù)覽Office文件的方法有哪些

2、編寫轉(zhuǎn)換幫助類

復(fù)制代碼 代碼如下:


using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using Aspose.Cells;
using Aspose.Words;
using Aspose.Slides;
using System.Text.RegularExpressions;
using System.IO;

namespace Souxuexiao.Common
{
    /// <summary>
    /// 第三方組件ASPOSE Office/WPS文件轉(zhuǎn)換
    /// Writer:Helen Joe
    /// Date:2014-09-24
    /// </summary>
    public class AsposeUtils
    {
        /// <summary>
        /// PFD轉(zhuǎn)換器位置
        /// </summary>
        private static string _EXEFILENAME = System.Web.HttpContext.Current != null
                ? System.Web.HttpContext.Current.Server.MapPath("/pdf2swf/pdf2swf.exe")
                : System.IO.Path.Combine(AppDomain.CurrentDomain.BaseDirectory + "\\pdf2swf\\pdf2swf.exe");

        #region 1.01 Wrod文檔轉(zhuǎn)換為PDF文件 +ConvertDocToPdF(string sourceFileName, string targetFileName)
        /// <summary>
        /// Wrod文檔轉(zhuǎn)換為PDF文件
        /// </summary>
        /// <param name="sourceFileName">需要轉(zhuǎn)換的Word全路徑</param>
        /// <param name="targetFileName">目標(biāo)文件全路徑</param>
        /// <returns>轉(zhuǎn)換是否成功</returns>
        public static bool ConvertDocToPdF(string sourceFileName, string targetFileName)
        {
            Souxuexiao.API.Logger.error(string.Format("Wrod文檔轉(zhuǎn)換為PDF文件:sourceFileName={0},targetFileName={1}", sourceFileName, targetFileName));
            try
            {
                using (System.IO.Stream stream = new System.IO.FileStream(sourceFileName, System.IO.FileMode.Open, System.IO.FileAccess.Read, System.IO.FileShare.ReadWrite))
                {
                    Document doc = new Document(sourceFileName);
                    doc.Save(targetFileName, Aspose.Words.SaveFormat.Pdf);
                }
            }
            catch (Exception ex)
            {
                Souxuexiao.API.Logger.error(string.Format("Wrod文檔轉(zhuǎn)換為PDF文件執(zhí)行ConvertDocToPdF發(fā)生異常原因是:{0}",ex.Message));
            }
            return System.IO.File.Exists(targetFileName);
        }
        #endregion

        #region 1.02 Excel文件轉(zhuǎn)換為HTML文件 +(string sourceFileName, string targetFileName, string guid)
        /// <summary>
        /// Excel文件轉(zhuǎn)換為HTML文件
        /// </summary>
        /// <param name="sourceFileName">Excel文件路徑</param>
        /// <param name="targetFileName">目標(biāo)路徑</param>
        /// <returns>轉(zhuǎn)換是否成功</returns>
        public static bool ConvertExcelToHtml(string sourceFileName, string targetFileName)
        {
            Souxuexiao.API.Logger.info(string.Format("準(zhǔn)備執(zhí)行Excel文件轉(zhuǎn)換為HTML文件,sourceFileName={0},targetFileName={1}",sourceFileName,targetFileName));
            try
            {
                using (System.IO.Stream stream = new System.IO.FileStream(sourceFileName, System.IO.FileMode.Open, System.IO.FileAccess.Read, System.IO.FileShare.ReadWrite))
                {
                    Aspose.Cells.Workbook workbook = new Workbook(stream);
                    workbook.Save(targetFileName, Aspose.Cells.SaveFormat.Html);
                }
            }
            catch (Exception ex)
            {
                Souxuexiao.API.Logger.error(string.Format("Excel文件轉(zhuǎn)換為HTML文件ConvertExcelToHtml異常原因是:{0}", ex.Message));
            }
            return System.IO.File.Exists(targetFileName);
        }
        #endregion

        #region 1.03 將PowerPoint文件轉(zhuǎn)換為PDF +ConvertPowerPointToPdf(string sourceFileName, string targetFileName)
        /// <summary>
        /// 將PowerPoint文件轉(zhuǎn)換為PDF
        /// </summary>
        /// <param name="sourceFileName">PPT/PPTX文件路徑</param>
        /// <param name="targetFileName">目標(biāo)文件路徑</param>
        /// <returns>轉(zhuǎn)換是否成功</returns>
        public static bool ConvertPowerPointToPdf(string sourceFileName, string targetFileName)
        {
            Souxuexiao.API.Logger.info(string.Format("準(zhǔn)備執(zhí)行PowerPoint轉(zhuǎn)換PDF,sourceFileName={0},targetFileName={1}",sourceFileName,targetFileName));
            try
            {
                using (System.IO.Stream stream = new System.IO.FileStream(sourceFileName, System.IO.FileMode.Open, System.IO.FileAccess.Read, System.IO.FileShare.ReadWrite))
                {
                    Aspose.Slides.Pptx.PresentationEx pptx = new Aspose.Slides.Pptx.PresentationEx(stream);
                    pptx.Save(targetFileName, Aspose.Slides.Export.SaveFormat.Pdf);
                }
            }
            catch (Exception ex)
            {
                Souxuexiao.API.Logger.error(string.Format("將PowerPoint文件轉(zhuǎn)換為PDFConvertExcelToHtml異常原因是:{0}", ex.Message));
            }
            return System.IO.File.Exists(targetFileName);
        }
        #endregion

        #region 2.01 讀取pdf文件的總頁數(shù) +GetPageCount(string pdf_filename)
        /// <summary>
        /// 讀取pdf文件的總頁數(shù)
        /// </summary>
        /// <param name="pdf_filename">pdf文件</param>
        /// <returns></returns>
        public static int GetPageCountByPDF(string pdf_filename)
        {
            int pageCount = 0;
            if (System.IO.File.Exists(pdf_filename))
            {
                try
                {
                    byte[] buffer = System.IO.File.ReadAllBytes(pdf_filename);
                    if (buffer != null && buffer.Length > 0)
                    {
                        pageCount = -1;
                        string pdfText = Encoding.Default.GetString(buffer);
                        Regex regex = new Regex(@"/Type\s*/Page[^s]");
                        MatchCollection conllection = regex.Matches(pdfText);
                        pageCount = conllection.Count;
                    }
                }
                catch (Exception ex)
                {
                    Souxuexiao.API.Logger.error(string.Format("讀取pdf文件的總頁數(shù)執(zhí)行GetPageCountByPowerPoint函數(shù)發(fā)生異常原因是:{0}", ex.Message));
                }
            }
            return pageCount;
        }
        #endregion

        #region 2.02 轉(zhuǎn)換PDF文件為SWF格式 +PDFConvertToSwf(string pdfPath, string swfPath, int page)
        /// <summary>
        /// 轉(zhuǎn)換PDF文件為SWF格式
        /// </summary>
        /// <param name="pdfPath">PDF文件路徑</param>
        /// <param name="swfPath">SWF生成目標(biāo)文件路徑</param>
        /// <param name="page">PDF頁數(shù)</param>
        /// <returns>生成是否成功</returns>
        public static bool PDFConvertToSwf(string pdfPath, string swfPath, int page)
        {
            StringBuilder sb = new StringBuilder();
            sb.Append(" \"" + pdfPath + "\"");
            sb.Append(" -o \"" + swfPath + "\"");
            sb.Append(" -z");
            //flash version
            sb.Append(" -s flashversion=9");
            //禁止PDF里面的鏈接
            sb.Append(" -s disablelinks");
            //PDF頁數(shù)
            sb.Append(" -p " + "\"1" + "-" + page + "\"");
            //SWF中的圖片質(zhì)量
            sb.Append(" -j 100");
            string command = sb.ToString();
            System.Diagnostics.Process p = null;
            try
            {
                using (p = new System.Diagnostics.Process())
                {
                    p.StartInfo.FileName = _EXEFILENAME;
                    p.StartInfo.Arguments = command;
                    p.StartInfo.WorkingDirectory = System.IO.Path.GetDirectoryName(_EXEFILENAME);
                    //不使用操作系統(tǒng)外殼程序 啟動(dòng) 線程
                    p.StartInfo.UseShellExecute = false;
                    //p.StartInfo.RedirectStandardInput = true;
                    //p.StartInfo.RedirectStandardOutput = true;

                    //把外部程序錯(cuò)誤輸出寫到StandardError流中(pdf2swf.exe的所有輸出信息,都為錯(cuò)誤輸出流,用 StandardOutput是捕獲不到任何消息的...
                    p.StartInfo.RedirectStandardError = true;
                    //不創(chuàng)建進(jìn)程窗口
                    p.StartInfo.CreateNoWindow = false;
                    //啟動(dòng)進(jìn)程
                    p.Start();
                    //開始異步讀取
                    p.BeginErrorReadLine();
                    //等待完成
                    p.WaitForExit();
                }
            }
            catch (Exception ex)
            {
                Souxuexiao.API.Logger.error(string.Format("轉(zhuǎn)換PDF文件為SWF格式執(zhí)行PDFConvertToSwf函數(shù)發(fā)生異常原因是:{0}", ex.Message));
            }
            finally
            {
                if (p != null)
                {
                    //關(guān)閉進(jìn)程
                    p.Close();
                    //釋放資源
                    p.Dispose();
                }
            }
            return File.Exists(swfPath);
        }
        #endregion
    }
}
Office格式轉(zhuǎn)換


3、將pdf文件轉(zhuǎn)swf的轉(zhuǎn)換器放到站點(diǎn)根目錄下新建文件夾pdf2swf(我就是這么配置的,您隨意)

4、配置FlexPaper

預(yù)覽頁面引用

復(fù)制代碼 代碼如下:


 <script src="/FlexPaper/js/swfobject.js" type="text/javascript"></script>
<script type="text/javascript" src="/FlexPaper/js/flexpaper_flash.js"></script>

控件容器以及設(shè)置項(xiàng)

復(fù)制代碼 代碼如下:


<div >
            <div id="flashContent" >
                <p>
                    To view this page ensure that Adobe Flash Player version
                    10.0.0 or greater is installed.
                </p>
                <script type="text/javascript">
                    var pageHost = ((document.location.protocol == "https:") ? "https://" : "http://");
                    document.write("<a href='http://www.adobe.com/go/getflashplayer'><img src='" + pageHost + "www.adobe.com/images/shared/download_buttons/get_flash_player.gif' alt='Get Adobe Flash player' /></a>");
                </script>
            </div>
        <script type="text/javascript">
            var _filename = document.getElementById("_filename").value;
            var swfVersionStr = "9.0.0";
            var xiSwfUrlStr = "playerProductInstall.swf";
            var flashvars = {
                SwfFile: escape(_filename),
                Scale: 0.6,
                ZoomTransition: "easeOut",
                ZoomTime: 0.5,
                ZoomInterval: 0.1,
                FitPageOnLoad: false,
                FitWidthOnLoad: true,
                PrintEnabled: true,
                FullScreenAsMaxWindow: false,
                ProgressiveLoading: true,

                PrintToolsVisible: true,
                ViewModeToolsVisible: true,
                ZoomToolsVisible: true,
                FullScreenVisible: true,
                NavToolsVisible: true,
                CursorToolsVisible: true,
                SearchToolsVisible: true,
                SearchMatchAll:true,

                localeChain: "zh_CN"
            };
            var params = {
                quality: "high",
                bgcolor: "#ffffff",
                allowscriptaccess: "sameDomain",
                allowfullscreen: "true"
            }
            var attributes = { id: "FlexPaperViewer", name: "FlexPaperViewer" };
            swfobject.embedSWF("/FlexPaper/FlexPaperViewer.swf", "flashContent", "980", "620", swfVersionStr, xiSwfUrlStr, flashvars, params, attributes);
            swfobject.createCSS("#flashContent", "display:block;text-align:left;");
        </script>
        </div>


document.getElementById("_filename").value是預(yù)覽文件的路徑
 
OK  大功告成  ,至于如何上傳,怎么保存上傳的文件等等那些邏輯我這里就省略了。。。。,但是有個(gè)建議,當(dāng)用戶上傳文件之后調(diào)用轉(zhuǎn)換api生成預(yù)覽文件是個(gè)耗時(shí)的操作,

文件越大耗時(shí)越長,也就是說生成預(yù)覽文件的時(shí)候是需要時(shí)間的,因此我使用異步方式生成預(yù)覽文件。

到此,相信大家對“.NET實(shí)現(xiàn)在網(wǎng)頁中預(yù)覽Office文件的方法有哪些”有了更深的了解,不妨來實(shí)際操作一番吧!這里是創(chuàng)新互聯(lián)建站,更多相關(guān)內(nèi)容可以進(jìn)入相關(guān)頻道進(jìn)行查詢,關(guān)注我們,繼續(xù)學(xué)習(xí)!

網(wǎng)頁名稱:.NET實(shí)現(xiàn)在網(wǎng)頁中預(yù)覽Office文件的方法有哪些-創(chuàng)新互聯(lián)
本文網(wǎng)址:http://jinyejixie.com/article30/ghgpo.html

成都網(wǎng)站建設(shè)公司_創(chuàng)新互聯(lián),為您提供虛擬主機(jī)、小程序開發(fā)、網(wǎng)站設(shè)計(jì)公司全網(wǎng)營銷推廣、網(wǎng)站制作、網(wǎng)站營銷

廣告

聲明:本網(wǎng)站發(fā)布的內(nèi)容(圖片、視頻和文字)以用戶投稿、用戶轉(zhuǎn)載內(nèi)容為主,如果涉及侵權(quán)請盡快告知,我們將會(huì)在第一時(shí)間刪除。文章觀點(diǎn)不代表本網(wǎng)站立場,如需處理請聯(lián)系客服。電話:028-86922220;郵箱:631063699@qq.com。內(nèi)容未經(jīng)允許不得轉(zhuǎn)載,或轉(zhuǎn)載時(shí)需注明來源: 創(chuàng)新互聯(lián)

外貿(mào)網(wǎng)站制作
丰镇市| 承德市| 天长市| 孝昌县| 如东县| 青河县| 张北县| 台州市| 南靖县| 大丰市| 恩施市| 万盛区| 梓潼县| 通江县| 获嘉县| 上虞市| 阳城县| 本溪市| 乳源| 乌兰县| 西林县| 大埔县| 临高县| 泌阳县| 当涂县| 苏尼特右旗| 三河市| 长顺县| 伊通| 大洼县| 保康县| 南溪县| 长海县| 惠东县| 安多县| 乌鲁木齐县| 襄城县| 彭泽县| 太康县| 霞浦县| 阜南县|