private void searchBActionPerformed(java.awt.event.ActionEvent evt) {
// TODO add your handling code here:
ReportView r = new ReportView("C:\\Users\\Paul Nigel\\Documents\\NetBeansProjects\\DailyRecordManagement\\DailyRecordManagement\\src\\JasperReport\\report1.jasper");
}
最佳答案
无法文件符号
这是一个编译错误,在您的情况下,符号为“ ReportView”,它是一个类。
这实质上意味着:
1)您未在代码中导入此软件包
2)您在类路径/构建路径上没有包含该类的必要jar。
附带说明一下,您是否打算改用GWT ReportViewer类?
关于java - 为什么我在ReportView中出错,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/32224981/