[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index] [Newsgroup Home]
[news.eclipse.newcomer] Re: POI

Hi,

I believe you are asking about POI from the Apache Foundation, a library for creating MS Excel. This newsgroup is not related to Apache POI questions so I would recommend to asked in related Apache newsgroup.

Best regards, Lars

Offtopic: other Java Excel lib is http://jexcelapi.sourceforge.net/ which is described here: http://www.vogella.de/articles/JavaExcel/article.html


dendeezen wrote:
Hi,

I solved the import issue with           import usermodel.*;

Other problem: I can make a workbook ,not a sheet???

<para>
public class HelloExcel {
public static void main(String[] args) throws IOException {
FileOutputStream bestand = new FileOutputStream(args[0]);
HSSFWorkbook wb = new HSSFWorkbook(); // is OK
HSSFSheet mysheet = wb.createSheet("mysheet"); // what is wrong with this?
}
}
</para>