导出.txt / .pdf / .xls
Posted mapstar
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了导出.txt / .pdf / .xls相关的知识,希望对你有一定的参考价值。
public static string TxtFilter = "文本文件(.txt)|*.txt"; public static string PDFFilter = "PDF文件(.pdf)|*pdf"; public static string XLSFilter = "Excel文件(.xls)|*.xls"; public void ExportGrid(GridControl grid, string ext, string Filter,string title) { using (SaveFileDialog saveFileDialog1 = new SaveFileDialog()) { saveFileDialog1.FileName = ""; saveFileDialog1.Filter = Filter; saveFileDialog1.FileName = title; saveFileDialog1.OverwritePrompt = false; //已存在文件是否覆盖提示 if (saveFileDialog1.ShowDialog() != DialogResult.OK) return; //已存在文件是否覆盖提示 while (System.IO.File.Exists(saveFileDialog1.FileName) && DevExpress.XtraEditors.XtraMessageBox.Show("该文件名已存在,是否覆盖?", "提示", MessageBoxButtons.YesNo, MessageBoxIcon.Question) != DialogResult.Yes) { if (saveFileDialog1.ShowDialog() != DialogResult.OK) return; } if (saveFileDialog1.FileName != "") { try { System.IO.FileStream fs = (System.IO.FileStream)saveFileDialog1.OpenFile(); if (ext == "txt") { grid.ExportToText(fs); } else if (ext == "pdf") { grid.ExportToPdf(fs); } else if (ext == "xls") { XlsExportOptions options = new XlsExportOptions(); options.TextExportMode = TextExportMode.Text; grid.ExportToXls(fs, options); } //this.gcISSUESUBs.ExportToText(fs); fs.Close(); //DevExpress.XtraEditors.XtraMessageBox.Show("数据导出成功!", "提示"); } catch (Exception ex) { if (ex.Message.Contains("正由另一进程使用")) { DevExpress.XtraEditors.XtraMessageBox.Show("数据导出失败!文件正由另一个程序占用!", "提示"); } else DevExpress.XtraEditors.XtraMessageBox.Show("数据导出失败!数据量过大,请分别统计再导出!", "提示"); } } } }
以上是关于导出.txt / .pdf / .xls的主要内容,如果未能解决你的问题,请参考以下文章
java读取txt/pdf/xls/xlsx/doc/docx/ppt/pptx
OpenOffice .xls 导出为 PDF 导致复选框重叠
前端实现文件在线预览txt,pdf,doc,xls,ppt几种格式
如何使用 PySpark 在桌面本地文件夹的目录中执行文件(pdf、docs、txt、xls)的并行处理?