我正在获取系统内存不足异常。我的xls文件大小为357 mb。我不确定必须配置什么才能打开较重的文件。
我指的是此网站https://help.syncfusion.com/file-formats/xlsio/excel-to-pdf-conversion上的文档
堆栈跟踪如下:
在Syncfusion.XlsIO.Parser.Biff_Records.BiffContinueRecordRaw.ExtractContinueRecords()中的在Syncfusion.XlsIO.Parser.Biff_Records.MSODrawingGroupRecord.ParseStructure() 在Syncfusion.XlsIO.Parser.Biff_Records.BiffRecordRawWithArray.ParseStructure(DataProvider provider,Int32 iOffset,Int32 iLength,ExcelVersion版本) 在Syncfusion.XlsIO.Parser.Biff_Records.BiffRecordRaw.FillRecord(BinaryReader阅读器,DataProvider提供程序,IDecryptor解密器,Byte [] arrBuffer)
请让我知道是否需要任何信息。
编辑2: 代码
ExcelEngine excelEngine = new ExcelEngine();
IApplication application = excelEngine.Excel;
application.DefaultVersion = ExcelVersion.Excel2013;
**IWorkbook workbook = application.Workbooks.Open(src_file, ExcelOpenType.Automatic);**
ExcelToPdfConverter converter = new ExcelToPdfConverter(workbook);
发生异常的行已用星号标记