博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
将 Excel 2007 读取到 Byte[], 然后再保存到新的Excel文件中, 这时打开新文件会出错....
阅读量:5089 次
发布时间:2019-06-13

本文共 1663 字,大约阅读时间需要 5 分钟。

using System;

using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.IO;
using System.Windows.Forms;
namespace ExcelTest
{
    /// <summary>
    /// 将Excel 2007 读取成 Byte[]. 然后将  Byte[] 保存到另一个文件中. 测试是否出错.
    /// </summary>
    public class ExcelToByteAry_ThenSaveExcelcs
    {
        public Byte[] GetByteAry(string filePath)
        {
            FileInfo file = new FileInfo(filePath);
            Stream stream = file.OpenRead();
            stream.Position = 0;
            byte[] buffer = new byte[stream.Length + 1];
            //将文件读入字节数组
            stream.Read(buffer, 0, buffer.Length);
            stream.Close();
            return buffer;
        }

        public void SaveToFile(Byte[] byteAry, string filePath)

        {
            try
            {
                if (File.Exists(filePath))
                    File.Delete(filePath);
            }
            catch (Exception ex)
            {
                MessageBox.Show(ex.Message);
                return;
            }
            FileStream stream = new FileStream(filePath, FileMode.CreateNew);
            //写入文件
            stream.Write(byteAry, 0, byteAry.Length);
            stream.Close();
        }
    }
}

//调用

 

        private void btnExcelToByteAry_ThenSaveExcelcs_Click(object sender, EventArgs e)

        {
            //System.IO.File.Copy(@"D:\My Documents\Visual Studio 2010\Projects\ExcelTest\ExcelTest\excel2007.xlsx",
            //    @"D:\My Documents\Visual Studio 2010\Projects\ExcelTest\ExcelTest\CopyExcel2007.xlsx");  //Copy 可以打开
            ExcelToByteAry_ThenSaveExcelcs e2b = new ExcelToByteAry_ThenSaveExcelcs();
            byte[] byteAry = e2b.GetByteAry(@"D:\My Documents\Visual Studio 2010\Projects\ExcelTest\ExcelTest\excel2007.rar");
            e2b.SaveToFile(byteAry, @"D:\My Documents\Visual Studio 2010\Projects\ExcelTest\ExcelTest\nexcel2007.rar");
        }

//打开新的Excel出错  :  发现不可读取的错误.

//如果使用File.Copy 不会出现. 但是因为 在Silverlight 中, 客户端与服务器的文件传输一般是用Byte[]. 所以不能用File.Copy了.

//暂时的解决方法: 文件传输时要压缩.

 

转载于:https://www.cnblogs.com/Ken-Cai/archive/2012/10/12/2722005.html

你可能感兴趣的文章
2014年北京网络赛 Instrusive HDU 5040 题解 优先队列
查看>>
【Jhipster】升级/修改 数据库结构
查看>>
文件上传与下载的前后端处理
查看>>
next_permutation函数
查看>>
【前端开发工具】WijmoJS 2018 v3 正式发布,全面支持Angular7
查看>>
css实现长英文字母自动换行
查看>>
dynamic基元类型与隐式类型的局部变量var
查看>>
获取APK第一次安装在本机的时间
查看>>
MVC是什么?
查看>>
maven安装与常用命令
查看>>
定制工具类
查看>>
开发技巧(3-1)Eclipse查找关键字
查看>>
输入用法
查看>>
Four types of inner class
查看>>
Jenkins持续集成与部署
查看>>
数据库操作之——索引
查看>>
Java-终止应用程序
查看>>
实验四
查看>>
datatable的序列化和反序列化 webservice
查看>>
最小二乘法
查看>>