zoukankan      html  css  js  c++  java
  • WebBrowse 保存数据库word、

    Hi,
    This is an extended question to http://www.experts-exchange.com/Programming/Languages/C_Sharp/Q_23183926.html.
    I have added a memorystream to a webbrowser:


            public WebBrowser createEmbeddedWord(Point point, MemoryStream memoryStream)
            {
                webBrowser = new WebBrowser();
                webBrowser.Location = point;
                Size size = new Size(new Point(200,200));
                webBrowser.Size = size;
               
                webBrowser.DocumentStream = memoryStream;
             
                return webBrowser;
                           
            }

    And when I run the program it displays the text in the webbrowser control, but you can't edit the text and it doesn't give the embedded word (word opened in the webbrowser) as if I did : //webBrowser.Navigate(@"C:\Test\MainTest1.doc");
    To test it I have written a small function which takes a document and inserts it into a byte[] to simulate the binary field on the server. Do I loose some formatting when I convert the document to byte[] since it doesn't open as a word document?

    public class BLDocument
    {
    public byte[] OpenWord()
    {
    object missing = System.Reflection.Missing.Value;
    bool Visible = false;
    ApplicationClass WordApp = new ApplicationClass();
    WordApp.Visible = Visible;
    object filename = @"C:\MainTest1.doc";
    Document adoc = WordApp.Documents.Open(ref filename, ref missing, ref missing, ref missing, ref missing,
    ref missing, ref missing, ref missing, ref missing, ref missing, ref missing, ref missing,
    ref missing, ref missing, ref missing, ref missing);
    adoc.Activate();
    adoc.ActiveWindow.Selection.WholeStory();
    adoc.ActiveWindow.Selection.Copy();
    IDataObject temp = Clipboard.GetDataObject();
    string dataString = Convert.ToString(temp.GetData(DataFormats.UnicodeText));
    UTF8Encoding enc8 = new UTF8Encoding();
    byte[] dataArray = enc8.GetBytes(dataString);
    //MemoryStream memorystream = new MemoryStream(dataArray);
    return dataArray;
    }
    }
    、、
    
    using System;
                using System.Configuration;
                using System.Data;
                using System.Data.SqlClient;
                using System.Windows.Forms;
                using System.IO;
                public class WordDocumentProcessor
                {
                private WebBrowser _webBrowser;
                public WordDocumentProcessor(WebBrowser browser)
                {
                if (browser == null)
                throw new NullReferenceException("Browser cannot be null");
                _webBrowser = browser;
                }
                public void ShowInBrowser(int documentId)
                {
                byte[] buffer = this.GetDocument(documentId);
                _webBrowser.DocumentStream.Write(buffer, 0, buffer.Length);
                }
                private byte[] GetDocument(int documentId)
                {
                string connectionString = ConfigurationManager.ConnectionStrings["MyDocuments"].ConnectionString;
                using (SqlConnection connection = new SqlConnection(connectionString))
                {
                connection.Open();
                using (SqlCommand command = new SqlCommand("spGetDocument"))
                {
                command.CommandType = CommandType.StoredProcedure;
                command.Parameters.AddWithValue("@DocumentID", documentId);
                return (byte[])command.ExecuteScalar();
                }
                }
                }
                }
    http://blog.joycode.com/kaneboy/archive/2004/11/03/37889.aspx
                
    Open in New Window Select All
  • 相关阅读:
    Java设计模式四: 原型模式(Prototype Pattern)
    Java设计模式六:观察者模式(Observer)
    Java设计模式九:状态模式(State)
    Windows 8 开发系列 自定义Gridview 绑定列表数据时出错
    Windows 8 开发系列如何修改系统样式
    Windows 8 开发系列全局资源App.xml的ContentFontsize会导致应用退出
    Windows 8 开发系列如何使状态栏不重复点击
    thinkpad E430 如何实现Fn键锁定或和功能键互换顺序
    Windows 8 开发系列应用挂起
    Windows 8 Metro 应用开发App Bar问题
  • 原文地址:https://www.cnblogs.com/lgzh3/p/1350708.html
Copyright © 2011-2022 走看看