我正在用Java开发一个XFDL渲染应用程序。 XFDL是一种表单定义语言,是XML的扩展。
渲染类使用StAX处理文档,并将所需的项添加到自定义的JPanel中进行显示。我已成功地将字段(JTextFields)和标签(JLabel)正确添加到JPanel行已成为一个问题。在构建包含多个页面的表单时,每当我显示表单时,每个页面都会获得表单中最后一页的行。
我已经完成了我的代码(如下所示)并且无法找到导致此行为的原因。当我单步执行时,所有计数器都正确递增,以便将行添加到正确的页面,但我总是在标签和字段的当前页面后面的最后一行。
我怀疑我误解了Java如何处理绘图,但我不确定是什么。
提前感谢您的答案和建议。
在XFDL文档中,行的定义如下:
<page SID="PAGE1">
<line sid="LINE1">
<itemlocation>
<ae>
<ae>absolute</ae>
<ae>1219</ae>
<ae>75</ae>
</ae>
<ae>
<ae>extent</ae>
<ae>3</ae>
<ae>854</ae>
</ae>
</itemlocation>
</line>
...
</page>
<page SID="PAGE2">
<line sid="LINE2">
<itemlocation>
<ae>
<ae>absolute</ae>
<ae>1219</ae>
<ae>75</ae>
</ae>
<ae>
<ae>extent</ae>
<ae>3</ae>
<ae>854</ae>
</ae>
</itemlocation>
</line>
...
</page>
当渲染类到达标记时,将调用以下方法:
private ArrayList<FormPanel> pages;
/**
* Draws a new line on the Panel
*
* Start State: Cursor is positioned on the <line> start element.
* End State: Cursor is positioned on the <line> end element.
*
* @throws XMLStreamException
*/
private void addLine() throws XMLStreamException {
while(reader.hasNext() &&
!(reader.isEndElement() &&
reader.getLocalName().equals(XFDL_LINE))) {
reader.next();
if(reader.isStartElement()) {
if(reader.getLocalName().equals(XFDL_ITEMLOCATION)) {
pages.get(currentPage).addLine(processItemLocation());
}
}
}
}
/**
* Processes an item location field into a Rectangle object used to set
* the bounds and location of form item.
* Start State: Cursor positioned on the itemlocation start element.
* End State: Cursor positioned on the itemlocation end element
*
* Currently only handles absolute positioning and extent sizes.
* Any other form of positioning data returns null.
*
* @return Rectangle representing the location and size of item.
* @throws XMLStreamException
*/
private Rectangle processItemLocation() throws XMLStreamException {
Rectangle result = new Rectangle();
ArrayList<String> attributes = new ArrayList<String>();
while(reader.hasNext() &&
!(reader.isEndElement() &&
reader.getLocalName().equals(XFDL_ITEMLOCATION)))
{
reader.next();
if(reader.isCharacters() && !reader.isWhiteSpace()) {
attributes.add(reader.getText());
}
}
for(int x=0; x<attributes.size(); x++) {
if(attributes.get(x).equals(XFDL_LOCATION_STYLE_ABSOLUTE)) {
result.setLocation(Integer.parseInt(attributes.get(x+1)),
Integer.parseInt(attributes.get(x+2)));
} else if(attributes.get(x).equals(XFDL_LOCATION_SIZE_EXTENT)) {
result.setSize(Integer.parseInt(attributes.get(x+1)),
Integer.parseInt(attributes.get(x+2)));
} else {
try{
Integer.parseInt(attributes.get(x));
} catch (NumberFormatException nfe) {
result = null;
x = attributes.size();
}
}
}
return result;
}
FormPanel是JPanel的扩展,带有一个额外的方法addLine()和一个重写的paintComponent(),如下所示:
private static ArrayList<Rectangle> lines;
public void addLine(Rectangle line) {
lines.add(line);
}
/**
* Overrides JPanel paintComponenet and draws lines on the form.
*/
protected void paintComponent(Graphics g) {
super.paintComponent(g);
for(int x = 0; x<lines.size(); x++) {
g.drawRect(lines.get(x).x,
lines.get(x).y,
lines.get(x).width,
lines.get(x).height);
g.fillRect(lines.get(x).x,
lines.get(x).y,
lines.get(x).width,
lines.get(x).height);
}
}
答案 0 :(得分:1)
当您输入新页面时,您应该致电
lines.clear();
假设每个页面都在自己的容器中。
当然,lines变量定义为static,因此整个文档有一个行容器。人们会认为你每页需要一个,所以静态的使用似乎有问题。