Dear all!

I'm having trouble with a feature that worked in POI 3.0.1 but not in
the new POI revision 3.0.2.

Here's what I'd like to do, as you can see a very simple thing:

1. Read an Excel-file:
        InputStream input = MyClass.class.getResourceAsStream(
"simple_input.xls" );
        POIFSFileSystem fs = new POIFSFileSystem( input );
        HSSFWorkbook wb = new HSSFWorkbook(fs);

2. Write the Excel file into another file:
        FileOutputStream out = new FileOutputStream("output.xls");
        wb.write(out);
        out.close();

Now, here's the thing:
- my Excel file only contains a cell which allows only the values 1,2,3
(a dropdown) but no further special formatting or other stuff!
- if i do the steps above with POI 3.0.1, the dropdown list still exists
in the output file
- if i do the exact same thing with POI 3.0.2, the dropdown disappears
and i just see the it's value

Can anybody tell me what I'm doing wrong??

I'd really appreciate your help!

Michael

---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]

Reply via email to