All Downloads are FREE. Search and download functionalities are using the official Maven repository.

net.sf.jxls.reader.XLSReader Maven / Gradle / Ivy

Go to download

jXLS is a small and easy-to-use Java library for generating Excel files using XLS templates

There is a newer version: 1.0.6
Show newest version
package net.sf.jxls.reader;

import org.apache.poi.openxml4j.exceptions.InvalidFormatException;

import java.io.IOException;
import java.io.InputStream;
import java.util.Map;

/**
 * Interface to read and parse excel file
 * @author Leonid Vysochyn
 */
public interface XLSReader {
    XLSReadStatus read(InputStream inputXLS, Map beans) throws IOException, InvalidFormatException;
    void setSheetReaders(Map sheetReaders);
    Map getSheetReaders();
    void addSheetReader( String sheetName, XLSSheetReader reader);
    void addSheetReader(XLSSheetReader reader);
    public void addSheetReader(Integer idx, XLSSheetReader reader);
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy