私は zk プログラミングの初心者です。現在、Eclipse Indigo を使用して開発しています。Excel ファイルをインポートしようとしてい.xlsx
ますが、機能しません.. エラー メッセージが表示されますorg/apache/poi/ss/usermodel/WorkbookFactory
ここに私の.zul
コードがあります
<?page title="import excel" contentType="text/html;charset=UTF-8"?><zk>
<window id="win" title="import excel" border="normal">
<listbox width="700px" id="box" mold="paging" pageSize="50" sizedByContent="true" span="true">
</listbox>
<button label="Load Excel to listview" upload="true,maxsize=300">
<attribute name="onUpload"><![CDATA[
import java.io.File;
import org.zkoss.io.Files;
import org.zkoss.util.media.Media;
String path = Executions.getCurrent().getDesktop().getWebApp().getRealPath("/");
//alert(path);
Media media = event.getMedia();
Files.copy(new File(path+ "upload\\" + media.getName()), media.getStreamData());
com.function.ZKextend zke=new com.function.ZKextend();
//zke.ImportExcelProd(win,"box",media);
zke.ImportExcel(win,"box",media);
]]></attribute>
</button>
<separator />
</window>
</zk>
.xlsx
これは、Excelファイルをインポートする私の機能です..
public void ImportExcel(Window nmWindow, String nmListbox, Media media) throws Exception{
/* We should now load excel objects and loop through the worksheet data */
FileInputStream input_document = new FileInputStream(new java.io.File("")+Executions.getCurrent().getDesktop().getWebApp().getRealPath("/")+"upload/"+media.getName());
Workbook my_xls_workbook = WorkbookFactory.create(input_document);
Sheet my_worksheet = my_xls_workbook.getSheetAt(0);
Iterator<Row> rowIterator = my_worksheet.iterator();
Listbox list = (Listbox) nmWindow.getFellow(nmListbox);
list.getItems().removeAll(list.getItems());
while(rowIterator.hasNext()) {
Row row = rowIterator.next();
Iterator<Cell> cellIterator = row.cellIterator();
Listitem li = new Listitem();
while(cellIterator.hasNext()) {
Cell cell = cellIterator.next();
switch(cell.getCellType()) {
case Cell.CELL_TYPE_STRING: //handle string columns
cell.getStringCellValue();
li.setValue(cell.getStringCellValue());
li.appendChild(new Listcell(cell.getStringCellValue()));
break;
case Cell.CELL_TYPE_NUMERIC: //handle double data
cell.getNumericCellValue();
li.setValue(cell.getNumericCellValue());
li.appendChild(new Listcell(String.valueOf(cell.getNumericCellValue())));
break;
}
}
list.appendChild(li);
}
}
また、プロジェクト プロパティのボタンを使用して、poi-3.8、poi-ooxml-3.8、poi-ooxml-schema-3.8、xmlbean-2.3を Java ビルド パス ライブラリに追加しました。add external JAR
このエラーが発生するので、見逃しているものはありますか? 私を助けてください、私はここで本当に必死です..ありがとう..