- iOS/Objective-C 元类和类别
- objective-c - -1001 错误,当 NSURLSession 通过 httpproxy 和/etc/hosts
- java - 使用网络类获取 url 地址
- ios - 推送通知中不播放声音
我在寻找此问题的解决方案时遇到了问题。我的代码运行后工作正常。它应该将我的 sql 数据库中的数据显示到我的 jtable,并且有一个按钮会触发显示 jasper 报告,但有一点问题,它总是向我显示消息“文档没有页面”。这是为什么?有人可以帮我解决我的问题吗?我做错了什么?
这是我的代码:
package stringmanipulation;
import java.sql.*;
import java.util.Vector;
import javax.swing.table.DefaultTableModel;
import net.sf.jasperreports.engine.JasperCompileManager;
import net.sf.jasperreports.engine.JasperFillManager;
import net.sf.jasperreports.engine.JasperPrint;
import net.sf.jasperreports.engine.JasperReport;
import net.sf.jasperreports.view.JasperViewer;
import org.apache.log4j.ConsoleAppender;
import org.apache.log4j.Logger;
import org.apache.log4j.PatternLayout;
public class r2xml extends javax.swing.JFrame {
public r2xml() {
initComponents();
}
Connection con;
private void search() throws Exception{
Class.forName("sun.jdbc.odbc.JdbcOdbcDriver");
String url = "jdbc:odbc:*****";
String user = "******";
String pass = "******";
Connection con = DriverManager.getConnection(url, user, pass);
Statement state = con.createStatement();
ResultSet rs = state.executeQuery("SELECT "
+ "pIDNo AS 'Patient ID',"
+ "pLName AS 'Last Name',"
+ "pFName AS 'First Name',"
+ "pMI AS 'M.I.',"
+ "pSex AS 'Sex',"
+ "pStatus AS 'Status',"
+ "pTelNo AS 'Contact No.',"
+ "pDocID AS 'Doctor ID',"
+ "pAddr AS 'St. No.',"
+ "pStreet AS 'St. Name',"
+ "pBarangay AS 'Barangay',"
+ "pCity AS 'City',"
+ " pProvince AS 'Province',"
+ " pLNameKIN AS 'Last Name',"
+ "pFNameKIN AS 'First Name',"
+ "pMIKIN AS 'M.I.',"
+ "pRelationKIN AS 'Relation',"
+ "pTotalDue AS 'Total Due'"
+ " FROM dbo.Patients");
ResultSetMetaData rsmetadata = rs.getMetaData();
int columns = rsmetadata.getColumnCount();
DefaultTableModel dtm = new DefaultTableModel();
Vector column_name = new Vector();
Vector data_rows = new Vector();
for (int i=1; i<columns;i++){
column_name.addElement(rsmetadata.getColumnName(i));
}
dtm.setColumnIdentifiers(column_name);
while(rs.next()){
data_rows = new Vector();
for (int j=1; j<columns; j++){
data_rows.addElement(rs.getString(j));
}
dtm.addRow(data_rows);
}
tblPatient.setModel(dtm);
}
public void reportviewer() {
try{
String report = "C:\\Users\\cleanfuel\\Documents\\NetBeansProjects\\StringManipulation\\src\\stringmanipulation\\report1.jrxml";
JasperReport jasp_report = JasperCompileManager.compileReport(report);
JasperPrint jasp_print = JasperFillManager.fillReport(jasp_report, null, con);
JasperViewer.viewReport(jasp_print);
}
catch (Exception e) {System.out.print(e);}
}
@SuppressWarnings("unchecked")
public static void main(String args[]) {
PatternLayout pl = new PatternLayout("[%-5p] %C.%M:%L: %m%n");
ConsoleAppender appender = new ConsoleAppender(pl);
Logger.getRootLogger().addAppender(appender);
java.awt.EventQueue.invokeLater(new Runnable() {
public void run() {
new r2xml().setVisible(true);
}
});
}
这是 XML 报告:
<?xml version="1.0" encoding="UTF-8"?>
<jasperReport xmlns="http://jasperreports.sourceforge.net/jasperreports" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://jasperreports.sourceforge.net/jasperreports http://jasperreports.sourceforge.net/xsd/jasperreport.xsd" name="null" language="groovy" pageWidth="842" pageHeight="595" orientation="Landscape" columnWidth="802" leftMargin="20" rightMargin="20" topMargin="20" bottomMargin="20">
<property name="ireport.zoom" value="1.0"/>
<property name="ireport.x" value="0"/>
<property name="ireport.y" value="71"/>
<style name="Title" forecolor="#FFFFFF" fontName="Times New Roman" fontSize="50" isBold="false" pdfFontName="Times-Bold"/>
<style name="SubTitle" forecolor="#666666" fontName="Times New Roman" fontSize="18" isBold="false" pdfFontName="Times-Roman"/>
<style name="Column header" forecolor="#666666" fontName="Times New Roman" fontSize="14" isBold="true" pdfFontName="Times-Roman"/>
<style name="Detail" mode="Transparent" fontName="Times New Roman" pdfFontName="Times-Roman"/>
<style name="Row" mode="Transparent" fontName="Times New Roman" pdfFontName="Times-Roman">
<conditionalStyle>
<conditionExpression><![CDATA[$V{REPORT_COUNT}%2 == 0]]></conditionExpression>
<style mode="Opaque" backcolor="#F0EFEF"/>
</conditionalStyle>
</style>
<subDataset name="PieChartDataset"/>
<queryString language="SQL">
<![CDATA[SELECT
Patients."pIDNo" AS Patients_pIDNo,
Patients."pLName" AS Patients_pLName,
Patients."pFName" AS Patients_pFName,
Patients."pMI" AS Patients_pMI,
Patients."pSex" AS Patients_pSex,
Patients."pStatus" AS Patients_pStatus,
Patients."pTelNo" AS Patients_pTelNo,
Patients."pDocID" AS Patients_pDocID,
Patients."pAddr" AS Patients_pAddr,
Patients."pStreet" AS Patients_pStreet,
Patients."pBarangay" AS Patients_pBarangay,
Patients."pCity" AS Patients_pCity,
Patients."pProvince" AS Patients_pProvince,
Patients."pLNameKIN" AS Patients_pLNameKIN,
Patients."pFNameKIN" AS Patients_pFNameKIN,
Patients."pMIKIN" AS Patients_pMIKIN,
Patients."pRelationKIN" AS Patients_pRelationKIN,
Patients."pTotalDue" AS Patients_pTotalDue
FROM
"dbo"."Patients" Patients]]>
</queryString>
<field name="Patients_pIDNo" class="java.lang.String"/>
<field name="Patients_pLName" class="java.lang.String"/>
<field name="Patients_pFName" class="java.lang.String"/>
<field name="Patients_pMI" class="java.lang.String"/>
<field name="Patients_pSex" class="java.lang.String"/>
<field name="Patients_pStatus" class="java.lang.String"/>
<field name="Patients_pTelNo" class="java.lang.String"/>
<field name="Patients_pDocID" class="java.lang.String"/>
<field name="Patients_pAddr" class="java.lang.String"/>
<field name="Patients_pStreet" class="java.lang.String"/>
<field name="Patients_pBarangay" class="java.lang.String"/>
<field name="Patients_pCity" class="java.lang.String"/>
<field name="Patients_pProvince" class="java.lang.String"/>
<field name="Patients_pLNameKIN" class="java.lang.String"/>
<field name="Patients_pFNameKIN" class="java.lang.String"/>
<field name="Patients_pMIKIN" class="java.lang.String"/>
<field name="Patients_pRelationKIN" class="java.lang.String"/>
<field name="Patients_pTotalDue" class="java.math.BigDecimal"/>
<group name="Patients_pIDNo">
<groupExpression><![CDATA[$F{Patients_pIDNo}]]></groupExpression>
<groupHeader>
<band height="31">
<frame>
<reportElement mode="Opaque" x="72" y="7" width="730" height="24" forecolor="#B89F7D" backcolor="#70A9C6"/>
<textField isStretchWithOverflow="true" isBlankWhenNull="true">
<reportElement style="SubTitle" isPrintRepeatedValues="false" x="155" y="1" width="110" height="23" forecolor="#FFFFFF"/>
<textElement>
<font fontName="Arial" isBold="false" pdfFontName="Helvetica"/>
</textElement>
<textFieldExpression><![CDATA[$F{Patients_pIDNo}]]></textFieldExpression>
</textField>
</frame>
</band>
</groupHeader>
<groupFooter>
<band height="6"/>
</groupFooter>
</group>
<background>
<band height="555" splitType="Stretch">
<pie3DChart>
<chart isShowLegend="false" evaluationTime="Report">
<reportElement x="-18" y="406" width="229" height="139"/>
<chartTitle/>
<chartSubtitle/>
<chartLegend/>
</chart>
<pieDataset>
<dataset>
<datasetRun subDataset="PieChartDataset">
<dataSourceExpression><![CDATA[new net.sf.jasperreports.engine.JREmptyDataSource(5)]]></dataSourceExpression>
</datasetRun>
</dataset>
<keyExpression><![CDATA[/* Replace with your key expression here */
$V{REPORT_COUNT}]]></keyExpression>
<valueExpression><![CDATA[new Double(200*Math.random()*5)]]></valueExpression>
</pieDataset>
<pie3DPlot>
<plot backgroundAlpha="0.5" foregroundAlpha="0.8">
<seriesColor seriesOrder="0" color="#3399FF"/>
<seriesColor seriesOrder="1" color="#00CCFF"/>
<seriesColor seriesOrder="2" color="#0066CC"/>
<seriesColor seriesOrder="3" color="#6699FF"/>
<seriesColor seriesOrder="4" color="#004A94"/>
<seriesColor seriesOrder="5" color="#00356A"/>
</plot>
<itemLabel color="#000000" backgroundColor="#FFFFFF"/>
</pie3DPlot>
</pie3DChart>
<image>
<reportElement x="-20" y="65" width="229" height="250">
<printWhenExpression><![CDATA[$V{PAGE_NUMBER} == 1]]></printWhenExpression>
</reportElement>
<imageExpression><![CDATA["flower1.png"]]></imageExpression>
</image>
<image>
<reportElement x="-20" y="-20" width="229" height="250">
<printWhenExpression><![CDATA[$V{PAGE_NUMBER} > 1]]></printWhenExpression>
</reportElement>
<imageExpression><![CDATA["flower1.png"]]></imageExpression>
</image>
<staticText>
<reportElement mode="Opaque" x="318" y="315" width="239" height="181" backcolor="#FFFFCC">
<printWhenExpression><![CDATA[Boolean.FALSE]]></printWhenExpression>
</reportElement>
<box topPadding="4" leftPadding="4" bottomPadding="4" rightPadding="4">
<pen lineWidth="1.0" lineColor="#CC9900"/>
<topPen lineWidth="1.0" lineColor="#CC9900"/>
<leftPen lineWidth="1.0" lineColor="#CC9900"/>
<bottomPen lineWidth="1.0" lineColor="#CC9900"/>
<rightPen lineWidth="1.0" lineColor="#CC9900"/>
</box>
<textElement>
<font size="12"/>
</textElement>
<text><![CDATA[Each chart is populated on each page.
The 3 pie charts are currently using an empty datasource and the values are
generated using a random generator.
This rectangle element is not printed (see the print when expression of this
element)]]></text>
</staticText>
<line>
<reportElement x="201" y="431" width="117" height="1">
<printWhenExpression><![CDATA[Boolean.FALSE]]></printWhenExpression>
</reportElement>
<graphicElement>
<pen lineWidth="3.0" lineStyle="Dotted" lineColor="#996600"/>
</graphicElement>
</line>
<staticText>
<reportElement mode="Opaque" x="275" y="-10" width="240" height="181" backcolor="#FFFFCC">
<printWhenExpression><![CDATA[Boolean.FALSE]]></printWhenExpression>
</reportElement>
<box topPadding="4" leftPadding="4" bottomPadding="4" rightPadding="4">
<pen lineWidth="1.0" lineColor="#CC9900"/>
<topPen lineWidth="1.0" lineColor="#CC9900"/>
<leftPen lineWidth="1.0" lineColor="#CC9900"/>
<bottomPen lineWidth="1.0" lineColor="#CC9900"/>
<rightPen lineWidth="1.0" lineColor="#CC9900"/>
</box>
<textElement markup="none">
<font size="12"/>
</textElement>
<text><![CDATA[Flowers
There are two flowers, the first one is printed only starting from the second page, the other one only in the first page.]]></text>
</staticText>
<line>
<reportElement x="72" y="37" width="204" height="1">
<printWhenExpression><![CDATA[Boolean.FALSE]]></printWhenExpression>
</reportElement>
<graphicElement>
<pen lineWidth="3.0" lineStyle="Dotted" lineColor="#996600"/>
</graphicElement>
</line>
</band>
</background>
<title>
<band height="94" splitType="Stretch">
<staticText>
<reportElement style="SubTitle" x="336" y="65" width="449" height="29"/>
<textElement textAlignment="Right">
<font size="22" isBold="false"/>
</textElement>
<text><![CDATA[Hospital ]]></text>
</staticText>
<frame>
<reportElement mode="Opaque" x="-20" y="0" width="822" height="65" forecolor="#006699" backcolor="#006699"/>
<staticText>
<reportElement style="Title" x="231" y="0" width="578" height="65"/>
<textElement textAlignment="Right">
<font size="54" isBold="false"/>
</textElement>
<text><![CDATA[Patient Form]]></text>
</staticText>
</frame>
</band>
</title>
<pageHeader>
<band splitType="Stretch"/>
</pageHeader>
<columnHeader>
<band height="14" splitType="Stretch">
<frame>
<reportElement x="210" y="0" width="575" height="14"/>
<staticText>
<reportElement style="Column header" positionType="Float" x="99" y="0" width="33" height="14" forecolor="#000000"/>
<textElement>
<font fontName="Arial" size="12" isBold="true" pdfFontName="Helvetica"/>
</textElement>
<text><![CDATA[Patients_pSex]]></text>
</staticText>
<staticText>
<reportElement style="Column header" positionType="Float" x="132" y="0" width="33" height="14" forecolor="#000000"/>
<textElement>
<font fontName="Arial" size="12" isBold="true" pdfFontName="Helvetica"/>
</textElement>
<text><![CDATA[Patients_pStatus]]></text>
</staticText>
<staticText>
<reportElement style="Column header" positionType="Float" x="165" y="0" width="33" height="14" forecolor="#000000"/>
<textElement>
<font fontName="Arial" size="12" isBold="true" pdfFontName="Helvetica"/>
</textElement>
<text><![CDATA[Patients_pTelNo]]></text>
</staticText>
<staticText>
<reportElement style="Column header" positionType="Float" x="198" y="0" width="33" height="14" forecolor="#000000"/>
<textElement>
<font fontName="Arial" size="12" isBold="true" pdfFontName="Helvetica"/>
</textElement>
<text><![CDATA[Patients_pDocID]]></text>
</staticText>
<staticText>
<reportElement style="Column header" positionType="Float" x="231" y="0" width="33" height="14" forecolor="#000000"/>
<textElement>
<font fontName="Arial" size="12" isBold="true" pdfFontName="Helvetica"/>
</textElement>
<text><![CDATA[Patients_pAddr]]></text>
</staticText>
<staticText>
<reportElement style="Column header" positionType="Float" x="264" y="0" width="33" height="14" forecolor="#000000"/>
<textElement>
<font fontName="Arial" size="12" isBold="true" pdfFontName="Helvetica"/>
</textElement>
<text><![CDATA[Patients_pStreet]]></text>
</staticText>
<staticText>
<reportElement style="Column header" positionType="Float" x="297" y="0" width="33" height="14" forecolor="#000000"/>
<textElement>
<font fontName="Arial" size="12" isBold="true" pdfFontName="Helvetica"/>
</textElement>
<text><![CDATA[Patients_pBarangay]]></text>
</staticText>
<staticText>
<reportElement style="Column header" positionType="Float" x="330" y="0" width="33" height="14" forecolor="#000000"/>
<textElement>
<font fontName="Arial" size="12" isBold="true" pdfFontName="Helvetica"/>
</textElement>
<text><![CDATA[Patients_pCity]]></text>
</staticText>
<staticText>
<reportElement style="Column header" positionType="Float" x="363" y="0" width="33" height="14" forecolor="#000000"/>
<textElement>
<font fontName="Arial" size="12" isBold="true" pdfFontName="Helvetica"/>
</textElement>
<text><![CDATA[Patients_pProvince]]></text>
</staticText>
<staticText>
<reportElement style="Column header" positionType="Float" x="396" y="0" width="33" height="14" forecolor="#000000"/>
<textElement>
<font fontName="Arial" size="12" isBold="true" pdfFontName="Helvetica"/>
</textElement>
<text><![CDATA[Patients_pLNameKIN]]></text>
</staticText>
<staticText>
<reportElement style="Column header" positionType="Float" x="429" y="0" width="33" height="14" forecolor="#000000"/>
<textElement>
<font fontName="Arial" size="12" isBold="true" pdfFontName="Helvetica"/>
</textElement>
<text><![CDATA[Patients_pFNameKIN]]></text>
</staticText>
<staticText>
<reportElement style="Column header" positionType="Float" x="462" y="0" width="33" height="14" forecolor="#000000"/>
<textElement>
<font fontName="Arial" size="12" isBold="true" pdfFontName="Helvetica"/>
</textElement>
<text><![CDATA[Patients_pMIKIN]]></text>
</staticText>
<staticText>
<reportElement style="Column header" positionType="Float" x="495" y="0" width="33" height="14" forecolor="#000000"/>
<textElement>
<font fontName="Arial" size="12" isBold="true" pdfFontName="Helvetica"/>
</textElement>
<text><![CDATA[Patients_pRelationKIN]]></text>
</staticText>
<staticText>
<reportElement style="Column header" positionType="Float" x="528" y="0" width="33" height="14" forecolor="#000000"/>
<textElement>
<font fontName="Arial" size="12" isBold="true" pdfFontName="Helvetica"/>
</textElement>
<text><![CDATA[Patients_pTotalDue]]></text>
</staticText>
</frame>
<staticText>
<reportElement style="Column header" positionType="Float" x="0" y="0" width="72" height="14" forecolor="#000000"/>
<textElement>
<font fontName="Arial" size="12" isBold="true" pdfFontName="Helvetica"/>
</textElement>
<text><![CDATA[ Last Name]]></text>
</staticText>
<staticText>
<reportElement style="Column header" positionType="Float" x="72" y="0" width="65" height="14" forecolor="#000000"/>
<textElement>
<font fontName="Arial" size="12" isBold="true" pdfFontName="Helvetica"/>
</textElement>
<text><![CDATA[First Name]]></text>
</staticText>
<staticText>
<reportElement style="Column header" positionType="Float" x="137" y="0" width="74" height="14" forecolor="#000000"/>
<textElement>
<font fontName="Arial" size="12" isBold="true" pdfFontName="Helvetica"/>
</textElement>
<text><![CDATA[Middle Initial]]></text>
</staticText>
</band>
</columnHeader>
<detail>
<band height="15" splitType="Stretch">
<line>
<reportElement positionType="FixRelativeToBottom" x="227" y="14" width="575" height="1"/>
</line>
<frame>
<reportElement x="226" y="0" width="575" height="14"/>
<textField isStretchWithOverflow="true" isBlankWhenNull="true">
<reportElement style="Detail" positionType="Float" x="99" y="0" width="33" height="14"/>
<textElement>
<font fontName="Arial" size="12" isBold="false" pdfFontName="Helvetica"/>
</textElement>
<textFieldExpression><![CDATA[$F{Patients_pSex}]]></textFieldExpression>
</textField>
<textField isStretchWithOverflow="true" isBlankWhenNull="true">
<reportElement style="Detail" positionType="Float" x="132" y="0" width="33" height="14"/>
<textElement>
<font fontName="Arial" size="12" isBold="false" pdfFontName="Helvetica"/>
</textElement>
<textFieldExpression><![CDATA[$F{Patients_pStatus}]]></textFieldExpression>
</textField>
<textField isStretchWithOverflow="true" isBlankWhenNull="true">
<reportElement style="Detail" positionType="Float" x="165" y="0" width="33" height="14"/>
<textElement>
<font fontName="Arial" size="12" isBold="false" pdfFontName="Helvetica"/>
</textElement>
<textFieldExpression><![CDATA[$F{Patients_pTelNo}]]></textFieldExpression>
</textField>
<textField isStretchWithOverflow="true" isBlankWhenNull="true">
<reportElement style="Detail" positionType="Float" x="198" y="0" width="33" height="14"/>
<textElement>
<font fontName="Arial" size="12" isBold="false" pdfFontName="Helvetica"/>
</textElement>
<textFieldExpression><![CDATA[$F{Patients_pDocID}]]></textFieldExpression>
</textField>
<textField isStretchWithOverflow="true" isBlankWhenNull="true">
<reportElement style="Detail" positionType="Float" x="231" y="0" width="33" height="14"/>
<textElement>
<font fontName="Arial" size="12" isBold="false" pdfFontName="Helvetica"/>
</textElement>
<textFieldExpression><![CDATA[$F{Patients_pAddr}]]></textFieldExpression>
</textField>
<textField isStretchWithOverflow="true" isBlankWhenNull="true">
<reportElement style="Detail" positionType="Float" x="264" y="0" width="33" height="14"/>
<textElement>
<font fontName="Arial" size="12" isBold="false" pdfFontName="Helvetica"/>
</textElement>
<textFieldExpression><![CDATA[$F{Patients_pStreet}]]></textFieldExpression>
</textField>
<textField isStretchWithOverflow="true" isBlankWhenNull="true">
<reportElement style="Detail" positionType="Float" x="297" y="0" width="33" height="14"/>
<textElement>
<font fontName="Arial" size="12" isBold="false" pdfFontName="Helvetica"/>
</textElement>
<textFieldExpression><![CDATA[$F{Patients_pBarangay}]]></textFieldExpression>
</textField>
<textField isStretchWithOverflow="true" isBlankWhenNull="true">
<reportElement style="Detail" positionType="Float" x="330" y="0" width="33" height="14"/>
<textElement>
<font fontName="Arial" size="12" isBold="false" pdfFontName="Helvetica"/>
</textElement>
<textFieldExpression><![CDATA[$F{Patients_pCity}]]></textFieldExpression>
</textField>
<textField isStretchWithOverflow="true" isBlankWhenNull="true">
<reportElement style="Detail" positionType="Float" x="363" y="0" width="33" height="14"/>
<textElement>
<font fontName="Arial" size="12" isBold="false" pdfFontName="Helvetica"/>
</textElement>
<textFieldExpression><![CDATA[$F{Patients_pProvince}]]></textFieldExpression>
</textField>
<textField isStretchWithOverflow="true" isBlankWhenNull="true">
<reportElement style="Detail" positionType="Float" x="396" y="0" width="33" height="14"/>
<textElement>
<font fontName="Arial" size="12" isBold="false" pdfFontName="Helvetica"/>
</textElement>
<textFieldExpression><![CDATA[$F{Patients_pLNameKIN}]]></textFieldExpression>
</textField>
<textField isStretchWithOverflow="true" isBlankWhenNull="true">
<reportElement style="Detail" positionType="Float" x="429" y="0" width="33" height="14"/>
<textElement>
<font fontName="Arial" size="12" isBold="false" pdfFontName="Helvetica"/>
</textElement>
<textFieldExpression><![CDATA[$F{Patients_pFNameKIN}]]></textFieldExpression>
</textField>
<textField isStretchWithOverflow="true" isBlankWhenNull="true">
<reportElement style="Detail" positionType="Float" x="462" y="0" width="33" height="14"/>
<textElement>
<font fontName="Arial" size="12" isBold="false" pdfFontName="Helvetica"/>
</textElement>
<textFieldExpression><![CDATA[$F{Patients_pMIKIN}]]></textFieldExpression>
</textField>
<textField isStretchWithOverflow="true" isBlankWhenNull="true">
<reportElement style="Detail" positionType="Float" x="495" y="0" width="33" height="14"/>
<textElement>
<font fontName="Arial" size="12" isBold="false" pdfFontName="Helvetica"/>
</textElement>
<textFieldExpression><![CDATA[$F{Patients_pRelationKIN}]]></textFieldExpression>
</textField>
<textField isStretchWithOverflow="true" isBlankWhenNull="true">
<reportElement style="Detail" positionType="Float" x="528" y="0" width="33" height="14"/>
<textElement>
<font fontName="Arial" size="12" isBold="false" pdfFontName="Helvetica"/>
</textElement>
<textFieldExpression><![CDATA[$F{Patients_pTotalDue}]]></textFieldExpression>
</textField>
</frame>
<textField isStretchWithOverflow="true" isBlankWhenNull="true">
<reportElement style="Detail" positionType="Float" x="4" y="0" width="68" height="14"/>
<textElement>
<font fontName="Arial" size="12" isBold="false" pdfFontName="Helvetica"/>
</textElement>
<textFieldExpression><![CDATA[$F{Patients_pLName}]]></textFieldExpression>
</textField>
<textField isStretchWithOverflow="true" isBlankWhenNull="true">
<reportElement style="Detail" positionType="Float" x="72" y="1" width="65" height="14"/>
<textElement>
<font fontName="Arial" size="12" isBold="false" pdfFontName="Helvetica"/>
</textElement>
<textFieldExpression><![CDATA[$F{Patients_pFName}]]></textFieldExpression>
</textField>
<textField isStretchWithOverflow="true" isBlankWhenNull="true">
<reportElement style="Detail" positionType="Float" x="137" y="1" width="72" height="14"/>
<textElement>
<font fontName="Arial" size="12" isBold="false" pdfFontName="Helvetica"/>
</textElement>
<textFieldExpression><![CDATA[$F{Patients_pMI}]]></textFieldExpression>
</textField>
</band>
</detail>
<columnFooter>
<band height="7" splitType="Stretch">
<line>
<reportElement positionType="FixRelativeToBottom" x="0" y="3" width="555" height="1"/>
<graphicElement>
<pen lineWidth="0.5" lineColor="#999999"/>
</graphicElement>
</line>
</band>
</columnFooter>
<pageFooter>
<band height="16" splitType="Stretch">
<frame>
<reportElement mode="Opaque" x="2" y="0" width="800" height="16" forecolor="#D0B48E" backcolor="#006699"/>
<textField evaluationTime="Report">
<reportElement style="Column header" x="753" y="0" width="40" height="16" forecolor="#FFFFFF"/>
<textElement verticalAlignment="Middle">
<font fontName="Arial" size="12" isBold="false" pdfFontName="Helvetica"/>
</textElement>
<textFieldExpression><![CDATA[" " + $V{PAGE_NUMBER}]]></textFieldExpression>
</textField>
<textField>
<reportElement style="Column header" x="673" y="0" width="80" height="16" forecolor="#FFFFFF"/>
<textElement textAlignment="Right" verticalAlignment="Middle">
<font fontName="Arial" size="12" isBold="false" pdfFontName="Helvetica"/>
</textElement>
<textFieldExpression><![CDATA["Page "+$V{PAGE_NUMBER}+" of"]]></textFieldExpression>
</textField>
<textField pattern="EEEEE dd MMMMM yyyy">
<reportElement style="Column header" x="2" y="0" width="197" height="16" forecolor="#FFFFFF"/>
<textElement verticalAlignment="Middle">
<font fontName="Arial" size="12" isBold="false" pdfFontName="Helvetica"/>
</textElement>
<textFieldExpression><![CDATA[new java.util.Date()]]></textFieldExpression>
</textField>
</frame>
</band>
</pageFooter>
<summary>
<band splitType="Stretch"/>
</summary>
</jasperReport>
最佳答案
首先,资源管理...
如果可以的话,你应该只打开一个到数据库的连接。确保在关闭应用程序之前关闭它。连接过程可能很昂贵,因此您只有在绝对必要时才真正想这样做...
您在使用完资源后关闭它们。这最好通过使用 try-finally
block 来实现...
private Connection con;
protected void close() throws SQLException {
if (con != null) {
con.close();
}
}
protected Connection getConnection() throws ClassNotFoundException, SQLException {
if (con == null) {
Class.forName("sun.jdbc.odbc.JdbcOdbcDriver");
String url = "jdbc:odbc:*****";
String user = "******";
String pass = "******";
Connection con = DriverManager.getConnection(url, user, pass);
}
return con;
}
private void search() throws Exception {
Statement state = null;
ResultSet rs = null;
try {
state = getConnection().createStatement();
rs = state.executeQuery("SELECT "
+ "pIDNo AS 'Patient ID',"
+ "pLName AS 'Last Name',"
+ "pFName AS 'First Name',"
+ "pMI AS 'M.I.',"
+ "pSex AS 'Sex',"
+ "pStatus AS 'Status',"
+ "pTelNo AS 'Contact No.',"
+ "pDocID AS 'Doctor ID',"
+ "pAddr AS 'St. No.',"
+ "pStreet AS 'St. Name',"
+ "pBarangay AS 'Barangay',"
+ "pCity AS 'City',"
+ " pProvince AS 'Province',"
+ " pLNameKIN AS 'Last Name',"
+ "pFNameKIN AS 'First Name',"
+ "pMIKIN AS 'M.I.',"
+ "pRelationKIN AS 'Relation',"
+ "pTotalDue AS 'Total Due'"
+ " FROM dbo.Patients");
ResultSetMetaData rsmetadata = rs.getMetaData();
int columns = rsmetadata.getColumnCount();
DefaultTableModel dtm = new DefaultTableModel();
Vector column_name = new Vector();
Vector data_rows = new Vector();
for (int i = 1; i < columns; i++) {
column_name.addElement(rsmetadata.getColumnName(i));
}
dtm.setColumnIdentifiers(column_name);
while (rs.next()) {
data_rows = new Vector();
for (int j = 1; j < columns; j++) {
data_rows.addElement(rs.getString(j));
}
dtm.addRow(data_rows);
}
tblPatient.setModel(dtm);
} finally {
try {
rs.close();
} catch (Exception e) {
}
try {
state.close();
} catch (Exception e) {
}
}
}
现在解决手头的问题......
看来您已经创建了两个对 con
的引用。一个作为类字段,一个作为方法变量(在 search
中)。
然后您将 con
传递给 Jasper Reports,我怀疑它是 null
。相反,您应该使用上面概述的 getConnection()
。
public void reportviewer() {
try{
String report = "C:\\Users\\cleanfuel\\Documents\\NetBeansProjects\\StringManipulation\\src\\stringmanipulation\\report1.jrxml";
JasperReport jasp_report = JasperCompileManager.compileReport(report);
JasperPrint jasp_print = JasperFillManager.fillReport(jasp_report, null, getConnection());
JasperViewer.viewReport(jasp_print);
} catch (Exception e) {
e.printStackTrace();
}
}
与后台 worker 更新...
一份报告可能需要一些时间来编译和填写。您应该将这项工作卸载到后台线程,这样它就不会干扰您的 UI(或者让它看起来像您的应用程序挂起)。
最简单的解决方案是使用 SwingWorker
。它具有将线程与 UI 重新同步的功能
public void reportviewer() {
// Disable any UI components you don't want the user using while
// the report generates...
new ReportWorker().execute();
}
public class ReportWorker extends SwingWorker<JasperPrint, Void> {
@Override
protected JasperPrint doInBackground() throws Exception {
String report = "C:\\Users\\cleanfuel\\Documents\\NetBeansProjects\\StringManipulation\\src\\stringmanipulation\\report1.jrxml";
JasperReport jasp_report = JasperCompileManager.compileReport(report);
JasperPrint jasp_print = JasperFillManager.fillReport(jasp_report, null, getConnection());
return jasp_print;
}
@Override
protected void done() {
try {
JasperPrint jasp_print = get();
JasperViewer.viewReport(jasp_print);
} catch (Exception exp) {
exp.printStackTrace();
}
// Renable any UI components you disabled before the report run
}
}
看看Concurrency in Swing了解更多详情。
提示
如果您可以预编译报告并加载它(而不是加载 XML),它将使报告过程更快。
关于java - 该文档没有页面。碧 Jade 报告,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/15964552/
我想设计两个代理 Agent1 在不同的时间向 Agent2 发送两个消息值。 Agent2 然后根据接收到的值执行操作。 使用 Jade,我尝试编写以下内容: -Agent1 有两个 addBeha
我只是 JADE 的初学者。我想知道如何创建主容器以外的容器并将多个代理添加到其中。完整的创建代码将不胜感激。 谢谢! 最佳答案 如 Tafadzwa Chikudo 回答中所述,启动容器的常用方法是
我正在尝试使用 Jade block ,但我的内容未显示。这是我的 index.jade: //index.jade extends ../includes/layout block main-con
我不知道 Jade 内部是如何工作的,但我猜它会编译每个模板文件一次,然后为每个 HTTP 请求使用编译和缓存的版本。 当我运行我的 Express 应用程序并对我的 *.jade 文件进行更改时,更
我正在制作一个基于 Express 的 Web 应用程序,每次有人访问这个 jade 文件时,我都会收到以下错误: Warning: missing space before text for lin
我正在向 Jade 模板传递一些数据,这些数据采用 JSON 形式,因此例如这里我输出 Jade 模板中所有团队的名称: p Teams: br -for(var i = 0; i < tou
我的 jade.js 文件中有以下内容 'use strict'; var config = require('../config'); module.exports = { dist: {
是否可以从非 JADE 应用程序(用 Java 或 C/C++ 编写)向 JADE 代理/平台发送消息(并从中接收消息)?是否可以通过某种方式向包含符合 FIPA 的 ACL 消息的平台发送 HTTP
我目前正在使用 gulp-jade,我正在努力研究如何在我的 gulpfile.js 中设置 Jade include。(为了澄清,我在这里指的是 http://jade-lang.com/refer
我有一个与 mongodb 集成的 Nodejs 项目。在这里,我创建了一个 jade 文件,其中有从数据库中获取的学生列表。每个学生记录都有一个编辑按钮。因此,当用户单击编辑按钮时,它需要将用户重定
我正在慢慢学习nodejs、express、jade。这就是我想要完成的基本任务: ul.nav - var obj = { 'home':'i.icon-home.icon-white Home
在jade模板引擎中: - 我可以做一个每个循环来包含文件吗?例如 each val in ['file1', 'file2', 'file3'] include val 最佳答案 “您正在
我有一个 View ,其中返回的 MIME 类型各不相同。如何设置标题部分的内容类型? 这是我想做的 !!! html head title #{site.title} - #{site.
框架:node.js/express.js/Jade 问题:在生产环境中,当一个 jade 文件被 express 渲染时,jade 缓存了它,所以 future 的渲染速度会更快。 当我启动 nod
我在 node.js 中有一个网站;要创建一个页面,比如说 mypage 我注意到我需要同时创建一个 layout.jade 和 mypage.jade 文件。如果我将代码放在 mypage.jade
我想将我的数据对象传递给 Jade 文件,但这是不可能的 我的 jade-loader : { test: /\.jade$/, loader: "jade", query: {
约曼/咕噜/ Jade 我的文件夹结构如下: App/ App/jade/user.jade /user.edit.jade /user.details.jade 当
所以我正在做这个项目,我正在使用 gulp。我需要它能够编译我编写的 jade(在 _jadefiles 文件夹中)并将它们作为 .html 输出到我项目的 _includes 文件夹中。 我目前正在
我正在使用 Jade/Express 构建的网站工作了几个星期。我最近为网站组织了图像文件夹,因此所有图像都分布在几个文件夹之间,以便于使用和分类。 为了更轻松地更改图像(和其他此类文件)的层次结构,
是的,我对问这样一个新手问题感到内疚。 app.get('/skumanagement/:id', function (req, res){ var options = req.params
我是一名优秀的程序员,十分优秀!