0
使用CrystalReportViewer如何在過濾之後從rpt文件查看數據,而不是在數據庫中查找數據。 rpt文件已包含所有數據。我正在研究java。使用CrystalReportViewer如何查看rpt文件和NOT數據庫中的數據?
這裏是我在jsp中的代碼。我需要做些什麼改變?
// ****** BEGIN CONNECT CRYSTALREPORTPAGEVIEWER SNIPPET ****************
{
// Create the CrystalReportViewer object
CrystalReportViewer crystalReportPageViewer = new CrystalReportViewer();
String reportSourceSessionKey = reportName+"ReportRerunSource";
Object reportSource = session.getAttribute(reportSourceSessionKey);
reportSource = clientDoc.getReportSource();
session.setAttribute(reportSourceSessionKey, reportSource);
// set the reportsource property of the viewer
crystalReportPageViewer.setReportSource(reportSource);
// Apply the viewer preference attributes
crystalReportPageViewer.setOwnPage(true);
crystalReportPageViewer.setHasLogo(true);
crystalReportPageViewer.setEnableParameterPrompt(false);
crystalReportPageViewer.setHasToggleParameterPanelButton(false);
// Process the report
crystalReportPageViewer.processHttpRequest(request, response, application, null);
}
// ****** END CONNECT CRYSTALREPORTPAGEVIEWER SNIPPET ****************
謝謝你的回答,我通過輸入我正在使用的代碼編輯了我的問題,你能告訴我它的修改嗎? – 2011-03-01 11:38:25