0

嗨,我对 Xml 解析很陌生

我想经常更改以下属性值............ columnCount,宽度和高度

之后我需要用修改后的数据重写 xml 文件

在使用java(sax,Dom或jaxB解析器)以下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="Hello_subreport1_subreport1" language="groovy" columnCount="2" printOrder="Horizontal" pageWidth="520" pageHeight="802" columnWidth="260" leftMargin="0" rightMargin="0" topMargin="0" bottomMargin="0" uuid="ac19d62f-eac8-428e-8e0a-9011534189ed">
    <property name="ireport.zoom" value="1.0"/>
    <property name="ireport.x" value="0"/>
    <property name="ireport.y" value="0"/>
    <queryString>
        <![CDATA[]]>
    </queryString>
    <field name="subjectName" class="java.lang.String">
        <fieldDescription><![CDATA[subjectName]]></fieldDescription>
    </field>
    <field name="subjectID" class="java.lang.Integer">
        <fieldDescription><![CDATA[subjectID]]></fieldDescription>
    </field>
    <field name="maxMarks" class="java.lang.Integer">
        <fieldDescription><![CDATA[maxMarks]]></fieldDescription>
    </field>
    <field name="redMarks" class="java.lang.Float">
        <fieldDescription><![CDATA[redMarks]]></fieldDescription>
    </field>
    <field name="passMarks" class="java.lang.Integer">
        <fieldDescription><![CDATA[passMarks]]></fieldDescription>
    </field>
    <field name="marks" class="java.lang.Float">
        <fieldDescription><![CDATA[marks]]></fieldDescription>
    </field>
    <background>
        <band splitType="Stretch"/>
    </background>
    <detail>
        <band height="52">
            <textField isStretchWithOverflow="true">
                <reportElement uuid="5f7665fb-9218-4434-a9e5-5eff306499b3" x="0" y="33" width="100" height="20"/>
                <box>
                    <pen lineWidth="0.0"/>
                    <topPen lineWidth="0.0"/>
                    <leftPen lineWidth="0.0"/>
                    <bottomPen lineWidth="0.0"/>
                    <rightPen lineWidth="0.0"/>
                </box>
                <textElement>
                    <font size="12"/>
                </textElement>
                <textFieldExpression><![CDATA[$F{marks}]]></textFieldExpression>
            </textField>
            <textField>
                <reportElement uuid="6b999cb1-600e-4634-be8f-7ac99e225f49" x="0" y="13" width="100" height="20"/>
                <box>
                    <topPen lineWidth="0.25"/>
                </box>
                <textElement/>
                <textFieldExpression><![CDATA[$F{subjectName}]]></textFieldExpression>
            </textField>
        </band>
    </detail>
</jasperReport>

==================================================== =======================

4

3 回答 3

1

如果您想修改文档,请使用 DOM 解析器。这会将 xml 文件转换为数据结构,您可以在其中找到属性并更改其值。看看 jdom 或 dom4j,它们真的很容易使用。

如果您只想阅读文档,sax 解析器是一个不错的选择。该解析器只是在解析文档时创建事件。


回答您的评论:我没有得到 NPE,但rootNode.getChild("detail"))返回 null。这是因为元素与命名空间相关联。将示例代码中的最后一行替换为

System.out.println(rootNode.getChild("detail", rootNode.getNamespace()));

这样可行。

于 2012-11-08T06:34:10.957 回答
0

在 Web 上有大量文档详细介绍了 XML 的编辑。探索它们,然后尝试一些东西。如果你被卡住了,那就把它贴在这里。

一些参考:http ://www.w3schools.com/dom/default.asp

如何在 Dom 解析器中修改 XML 数据

http://www.mkyong.com/java/how-to-modify-xml-file-in-java-dom-parser/

http://www.drdobbs.com/jvm/easy-dom-parsing-in-java/231002580

于 2012-11-08T06:50:28.813 回答
0

也许您可以使用avc-binding-dom,它通过注释将 DOM 节点绑定到您的自定义 Java 接口:

import org.w3c.dom.Node;
import net.avcompris.binding.annotation.XPath;
import net.avcompris.binding.dom.impl.DefaultDomBinder;

@Namespaces("xmlns:jr=http://jasperreports.sourceforge.net/jasperreports")
@XPath("/jr:jasperReport")
interface MyJasperReport {

    @XPath("@columnCount")
    int getColumnCount();
    void setColumnCount(int columnCount);

    @XPath("@pageWidth")
    int getPageWidth();
    void setPageWidth(int pageWidth);

    @XPath("jr:property[@name = 'ireport.zoom']/@value")
    String getZoom();
    void setZoom(String zoom);
}

Node node = ... // You have to load the XML file into a DOM node.

MyJasperReport jr = new DefaultDomBinder().bind(node, MyJasperReport.class);

jr.setColumnCount(4); // previously: 2
jr.setPageWidth(1024); // previously: 520
jr.setZoom("1.45"); // previously: "1.0"

... // then save the DOM node into a XML file.
于 2013-06-13T09:29:56.113 回答