模块 excel.io

类 ExcelIO

java.lang.Object
com.github.developframework.excel.ExcelIO

public final class ExcelIO extends Object
作者:
qiushui on 2019-05-18.
  • 构造器详细资料

    • ExcelIO

      public ExcelIO()
  • 方法详细资料

    • writer

      public static ExcelWriter writer(ExcelType excelType)
      写出器
      参数:
      excelType - Excel类型
      返回:
      写出器
    • reader

      public static ExcelReader reader(ExcelType excelType, InputStream inputStream) throws IOException
      从流读取
      参数:
      excelType - Excel类型
      inputStream - 输入流
      返回:
      读取器
      抛出:
      IOException
    • reader

      public static ExcelReader reader(String filename) throws IOException
      从文件读取
      参数:
      filename - 文件名
      返回:
      读取器
      抛出:
      IOException
    • readerWithPassword

      public static ExcelReader readerWithPassword(InputStream inputStream, String password) throws IOException
      从流读取(带密码)
      参数:
      inputStream - 输入流
      password - 密码
      返回:
      读取器
      抛出:
      IOException
    • readerWithPassword

      public static ExcelReader readerWithPassword(String filename, String password)
      从文件读取(带密码)
      参数:
      filename - 文件名
      password - 密码
      返回:
      读取器