Excel offers the option to import a pdf Document into a .xls workbook and make it visible/ available in a xls-sheet. The Formula in Excel looks like that: =EINBETTEN("Paket";"")
Is this f.e. possible through ths formula operation, i thought of something like: HSSFWorkbook wb = new HSSFWorkbook(); HSSFSheet sheet1 = wb.createSheet("new sheet"); HSSFRow row = sheet1.createRow((short) 1); HSSFCell cell = row.createCell((short) 1); cell.setCellFormula("EINBETTEN(\"Paket\";\"\")"); --------------------------------------------------------------------- To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]