Hi ebm, Are your apps Java? Put poi-3.6.jar into your class path and then the XLS methods are under.
import org.apache.poi.hssf.usermodel.*; My advice, download and use Eclipse IDE as you only type in HSSFWorksheet Then press CTRL-Space it shows you available classes/methods and when you select one and press enter it auto generates the Import statements. If you want to use the more generic SS model, which help support both XLS and XLSX formats then import import org.apache.poi.ss.usermodel.*; Rich On 22 March 2010 16:27, Quique Britto <[email protected]> wrote: > Sorry if this should be common sense but I have extracted the poi zip ( > poi-bin-3.6-20091214.zip< > http://www.apache.org/dyn/closer.cgi/poi/release/bin/poi-bin-3.6-20091214.zip > >) > to my c:\poi-3.6\ directory. > I want to be able to read and write XLS files from within my program(s), > what do I need to import in my app.: > > import poi? > > any help will be highly appreciated. > ebm1991 >
