Java Code Examples for com.alibaba.excel.EasyExcel#readBySax()
The following examples show how to use
com.alibaba.excel.EasyExcel#readBySax() .
You can vote up the ones you like or vote down the ones you don't like,
and go to the original project or source file by following the links above each example. You may check out the related API usage on the sidebar.
Example 1
Source File: CompatibilityParameterDataTest.java From easyexcel with Apache License 2.0 | 5 votes |
private void readAndWrite1(File file) throws Exception { OutputStream out = new FileOutputStream(file); ExcelWriter writer = EasyExcel.getWriter(out); Sheet sheet1 = new Sheet(1, 0); sheet1.setSheetName("第一个sheet"); writer.write0(data(), sheet1); writer.finish(); out.close(); InputStream inputStream = new FileInputStream(file); EasyExcel.readBySax(inputStream, new Sheet(1, 0), new CompatibilityDataListener()); inputStream.close(); }
Example 2
Source File: CompatibilityParameterDataTest.java From easyexcel with Apache License 2.0 | 5 votes |
private void readAndWrite2(File file) throws Exception { OutputStream out = new FileOutputStream(file); ExcelWriter writer = EasyExcel.getWriter(out, null, false); Sheet sheet1 = new Sheet(1, 0); sheet1.setSheetName("第一个sheet"); writer.write0(data(), sheet1); writer.finish(); out.close(); InputStream inputStream = new FileInputStream(file); EasyExcel.readBySax(inputStream, new Sheet(1, 0), new CompatibilityDataListener()); inputStream.close(); }