JasperReportsでレポートを生成すると、おかしな状況が発生します。私はいくつかのコードを実行し、レポートを正しく生成しました。しかし、友人が私のPCに接続して実行すると、レポートは友人ではなく私のPCに表示されます:)。
誰かが何が悪いのか教えてもらえますか? フロントエンドには ZK CE を使用しています。
@Command
public void printPC() throws JRException, SQLException, ClassNotFoundException, IOException
{
String file1 = "/WEB-INF/pages/procurement/report/productCategoryReport.jrxml";
InputStream Is = WebApps.getCurrent().getResourceAsStream(file1);
JasperDesign jasperDesign =JRXmlLoader.load(Is);
JasperReport jasperReport =JasperCompileManager.compileReport(jasperDesign);
JasperPrint jasperPrint = JasperFillManager.fillReport(jasperReport, null, getConnection());
JasperViewer.viewReport(jasperPrint,false);
getConnection().close();
}