阅读背景:

NPOI 操作excel之 将图片插入到指定位置;

来源:互联网 
 //新建类 重写Npoi流方法
    public class NpoiMemoryStream : MemoryStream
    {
        public NpoiMemoryStream()
        {
            AllowClose = true;
        }

        public bool AllowClose { get; set; }

        public override void Close()
        {
            if (AllowClose)
                base.Close();
        }
    } //新建类 重写Npoi流方法
    public class NpoiMemor



你的当前访问异常,请进行认证后继续阅读剩余内容。

分享到: