我发现这个名为Boxable的API也使用PDFBox,现在我正在尝试在线实现这些示例,但无法使其工作。 这是我的代码。
public static ArrayList <String[]> result = new ArrayList<String[]>();
我刚才像示例
那样复制了这个函数private static PDPage addNewPage(PDDocument doc) {
PDPage page = new PDPage();
doc.addPage(page);
return page;
}
这些是我主要功能的一部分
我的查询执行
Connection con = null;
PreparedStatement ps = null;
String query = "SELECT * FROM tablename";
try{
con = getConnection();
ps = con.prepareStatement(query);
ResultSet rs = ps.executeQuery();
int columnCount = rs.getMetaData().getColumnCount();
while(rs.next()){
String[] row = new String[columnCount];
for (int i=0;i<columnCount;i++){
row[i] = rs.getString(i+1);
}
result.add(row);
}
} catch (SQLException ex) {
Logger.getLogger(NewClass.class.getName()).log(Level.SEVERE, null, ex);
}
生成表的部分
try{
float margin = 10;
PDDocument doc = new PDDocument();
PDPage page = addNewPage(doc);
float tableWidth = page.getMediaBox().getWidth()-(2*margin);
float yStartNewPage = page.getMediaBox().getHeight()-(2*margin);
boolean drawContent = true;
boolean drawLines = true;
float yStart = yStartNewPage;
float bottomMargin = 70;
BaseTable table = new BaseTable(yStart,yStartNewPage,bottomMargin,tableWidth,margin,doc,page,drawLines,drawContent);
Row<PDPage> headerRow = table.createRow(15f);
Cell<PDPage> cell = headerRow.createCell(100,"Sample Table");
cell.setFont(PDType1Font.HELVETICA_BOLD);
cell.setFillColor(Color.BLACK);
table.addHeaderRow(headerRow);
for (String[] print : result){
Row<PDPage> row = table.createRow(10f);
cell = row.createCell((100/3.0f)*2,print[0]);
for (int i=1;i<print.length;i++){
cell = row.createCell((100/9f),print[i]);
}
}
table.draw();
doc.save(new File("java\\sample.pdf"));
doc.close();
} catch (IOException ex) {
Logger.getLogger(NewClass.class.getName()).log(Level.SEVERE, null, ex);
}
编译器给我这个例外
Exception in thread "main" java.lang.NoClassDefFoundError: org/slf4j/LoggerFactory
at be.quodlibet.boxable.utils.FontUtils.<clinit>(FontUtils.java:23)
at be.quodlibet.boxable.Cell.<init>(Cell.java:110)
at be.quodlibet.boxable.Cell.<init>(Cell.java:71)
at be.quodlibet.boxable.Row.createCell(Row.java:51)
at connect.NewClass.main(NewClass.java:115)
115上的所述行是Cell<PDPage> cell = headerRow.createCell(100,"Sample Table");
我真的不知道出了什么问题,而且还是Java新手。还尝试读取类的代码但无法检测错误。 非常感谢您对此的投入。
答案 0 :(得分:1)
org.slf4j.LoggerFactory
表示您在类路径中没有引用的依赖项。这通常通过使用Maven之类的依赖关系管理器或手动将jar复制到项目根目录来解决。
具体来说,在您的问题中,您在编译时缺少val y = rdd.filter(e => e%2==0)
包。