程序師世界是廣大編程愛好者互助、分享、學習的平台,程序師世界有你更精彩!
首頁
編程語言
C語言|JAVA編程
Python編程
網頁編程
ASP編程|PHP編程
JSP編程
數據庫知識
MYSQL數據庫|SqlServer數據庫
Oracle數據庫|DB2數據庫
 程式師世界 >> 編程語言 >> .NET網頁編程 >> C# >> C#入門知識 >> c# word文檔與二進制數據的相互轉換

c# word文檔與二進制數據的相互轉換

編輯:C#入門知識

最近項目出使用到了將word文檔以二進制的方法存到數據庫中,並再次讀取出二進制數據轉換為word文檔。最後總結了一下,不多說看示例方法:
 

\\代碼         /// <summary>
        /// 二進制數據轉換為word文件
        /// </summary>
        /// <param name="data">二進制數據</param>
        /// <param name="fileName">word文件名</param>
        /// <returns>word保存的相對路徑</returns>
        public string ByteConvertWord(byte[] data, string fileName)
        {
            string savePath = @"SystemWord"+FormatNowTime(2)+@"";

            if (!System.IO.Directory.Exists(GetPath() + savePath))
            {
                Directory.CreateDirectory(GetPath() + savePath);
            }
            savePath += fileName + ".doc";
            string filePath = GetPath() + savePath;

            FileStream fs;
            if (System.IO.File.Exists(filePath))
            {
                fs = new FileStream(filePath, FileMode.Truncate);
            }
            else
            {
                fs = new FileStream(filePath, FileMode.CreateNew);
            }
            BinaryWriter br = new BinaryWriter(fs);
            br.Write(data, 0, data.Length);
            br.Close();
            fs.Close();
            return savePath;
        }

        /// <summary>
  1. 上一頁:
  2. 下一頁:
Copyright © 程式師世界 All Rights Reserved