|
|
|
iReport Export PDF แบบ next page หลายๆๆหน้า ต้องเพิ่ม code อย่างไรครับ |
|
|
|
|
|
|
|
Code (Java)
try {
JRResultSetDataSource resultSetDataSource = new JRResultSetDataSource(
rs);
// HashMap<String, Object> pm = new HashMap<String, Object>();
ClassLoader classLoader = getClass().getClassLoader();
File file = new File(classLoader.getResource(rpt).getFile());
log.info(file.getAbsolutePath().replace("%20", " "));
JasperReport jr = JasperCompileManager.compileReport(file
.getAbsolutePath().replace("%20", " "));
// JasperReport jr = JasperCompileManager.compileReport(cf
// .getString("jasperPath") + "\\" + rpt);
JasperPrint jp = JasperFillManager.fillReport(jr, null,
resultSetDataSource);
JasperExportManager.exportReportToPdfFile(jp,
cf.getString("outPath") + "\\" + licenseno + ".pdf");
log.info("success : " + cf.getString("outPath") + "\\"
+ licenseno + ".pdf");
} catch (Exception e) {
log.error(e.toString());
e.printStackTrace();
}
Tag : Java, PDF, iReport, JAVA
|
|
|
|
|
|
Date :
2018-02-19 10:22:55 |
By :
jakkrit01 |
View :
2155 |
Reply :
1 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
เข้าใจว่าหลังจาก Export เป็น PDF แล้ว จะเป็น Feature ความสามารถของตัว iReport ว่าจะแสดงผลได้แบบไหนครับ
|
|
|
|
|
Date :
2018-02-23 18:05:14 |
By :
mr.win |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
Load balance : Server 01
|