回复 1楼快乐小子1987的帖子
快乐小子1987 你好,
实现步骤为:
1.先把 Spread 存入流文件。
2.写入 byte 数据。
3.存入数据库。
参考代码:
- MemoryStream stream = new MemoryStream();
- fpSpread1.Sheets[0].Cells[0, 0].Text = "abc";
- fpSpread1.Save(stream, false);
- byte[] bts = new byte[stream.Length];
- stream.Read(bts, 0, (int)stream.Length);
- stream.Close();
复制代码
推荐参考资源:
http://www.docin.com/p-69899530.html |