MiniExcel
MiniExcel copied to clipboard
Fast, Low-Memory, Easy Excel .NET helper to import/export/template spreadsheet (support Linux, Mac)
 --- Thinking: - use aps.net core api & vue to do it
 e.g  --- I think it need like vue template engine
``` @Data @ContentRowHeight(10) @HeadRowHeight(20) @ColumnWidth(25) public class WidthAndHeightData { @ExcelProperty("字符串标题") private String string; @ExcelProperty("日期标题") private Date date; /** * 宽度为50 */ @ColumnWidth(50) @ExcelProperty("数字标题") private Double doubleData; } ```
like easyexcel  ```java @Data public class ConverterData { /** * 我想所有的 字符串起前面加上"自定义:"三个字 */ @ExcelProperty(value = "字符串标题", converter = CustomStringStringConverter.class) private String string; /** * 我想写到excel 用年月日的格式 */ @DateTimeFormat("yyyy年MM月dd日HH时mm分ss秒") @ExcelProperty("日期标题")...
[TestIssue165.xlsx](https://github.com/shps951023/MiniExcel/files/6475904/TestIssue165.xlsx)  



e.g ```C# void Main() { var input = new[] { new Demo{Name="Test1",Image="C:\\Test1.png"}, new Demo{Name="Test2",Image="C:\\Test2.png"} } MiniExcel.SaveAs(path, input); } public class Demo { public string Name { get; set; } [ImageUri]...
