• 大小: 1.21MB
    文件类型: .rar
    金币: 1
    下载: 0 次
    发布日期: 2023-08-29
  • 语言: C#
  • 标签: word  保存  读取  数据库  

资源简介

把word文件转为二进制文件流存入数据库,并且实现读取的小案例

资源截图

代码片段和文件信息

using System;
using System.Collections;
using System.Configuration;
using System.Data;
using System.Linq;
using System.Web;
using System.Web.Security;
using System.Web.UI;
using System.Web.UI.HtmlControls;
using System.Web.UI.WebControls;
using System.Web.UI.WebControls.WebParts;
using System.xml.Linq;
using System.IO;
using testModels;
using testBLL;

namespace test
{
    public partial class _Default : System.Web.UI.Page
    {
        protected void Page_Load(object sender EventArgs e)
        {

        }

        protected void Button1_Click(object sender EventArgs e)
        {
            Stream fileStream = fulPath.PostedFile.InputStream;

            //获取上传文件字节的大小

            int length = fulPath.PostedFile.ContentLength;

            byte[] wordData = new byte[length];

            //从流中读取字节并写入wordData
           
            int n = fileStream.Read(wordData 0 length);
            //下面把wordData保存进数据库
            Words wd = new Words();
            wd.name = TextBox1.Text.Trim();
            wd.wordData = wordData;
            WordsManage.AddWords(wd);
        }

        protected void Button2_Click(object sender EventArgs e)
        {
            WordsManage.WriteWord(TextBox2.Text.Trim());
           
        }
    }
}

 属性            大小     日期    时间   名称
----------- ---------  ---------- -----  ----

     文件       5120  2009-12-18 09:13  test\test\bin\test.dll

     文件      11776  2009-12-18 09:13  test\test\bin\test.pdb

     文件       4096  2009-12-18 09:13  test\test\bin\testBLL.dll

     文件      11776  2009-12-18 09:13  test\test\bin\testBLL.pdb

     文件       7680  2009-12-18 09:13  test\test\bin\testDAL.dll

     文件      17920  2009-12-18 09:13  test\test\bin\testDAL.pdb

     文件       4608  2009-12-18 09:13  test\test\bin\testModels.dll

     文件       7680  2009-12-18 09:13  test\test\bin\testModels.pdb

     文件        973  2009-12-18 09:13  test\test\Default.aspx

     文件       1369  2009-12-17 17:28  test\test\Default.aspx.cs

     文件       2552  2009-12-17 17:28  test\test\Default.aspx.designer.cs

     文件       8700  2009-12-18 09:13  test\test\obj\Debug\ResolveAssemblyReference.cache

     文件       1131  2009-12-18 09:13  test\test\obj\Debug\test.csproj.FileListAbsolute.txt

     文件       5120  2009-12-18 09:13  test\test\obj\Debug\test.dll

     文件      11776  2009-12-18 09:13  test\test\obj\Debug\test.pdb

     文件       1298  2009-12-17 14:58  test\test\Properties\AssemblyInfo.cs

     文件       4486  2009-12-17 17:22  test\test\test.csproj

     文件       1225  2009-12-17 17:22  test\test\test.csproj.user

     文件       7951  2009-12-18 09:01  test\test\Web.config

     文件    3145728  2009-12-18 09:14  test\test.mdf

     文件       2336  2009-12-17 17:22  test\test.sln

    ..A..H.     81920  2009-12-18 09:14  test\test.suo

     文件       4096  2009-12-18 09:13  test\testBLL\bin\Debug\testBLL.dll

     文件      11776  2009-12-18 09:13  test\testBLL\bin\Debug\testBLL.pdb

     文件       7680  2009-12-18 09:13  test\testBLL\bin\Debug\testDAL.dll

     文件      17920  2009-12-18 09:13  test\testBLL\bin\Debug\testDAL.pdb

     文件       4608  2009-12-18 09:13  test\testBLL\bin\Debug\testModels.dll

     文件       7680  2009-12-18 09:13  test\testBLL\bin\Debug\testModels.pdb

     文件       3584  2009-12-17 17:23  test\testBLL\obj\Debug\Refactor\testBLL.dll

     文件       6346  2009-12-18 09:13  test\testBLL\obj\Debug\ResolveAssemblyReference.cache

............此处省略65个文件信息

评论

共有 条评论