Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我需要从数据库中获取数据并以 XLS 格式发送到 FTP 服务器。我使用内存流对 XML 做了同样的事情。但是,我不确定如何格式化 XLS 并将其加载到内存流。有什么想法或方法吗?示例代码总是有帮助的。
请参阅此答案,它使用 Excel OpenXML 格式。无需任何外部库即可获得 Excel 的最快方法。
在 c# 中使用 Open Xml SDK 将 DataTable 导出到 Excel
我误解了你的问题。读取文件以流式传输是所有文件的标准。
new MemoryStream(File.ReadAllBytes(inputFilename))