使用:Apache蜡染(SVG),NetBeans IDE,NetBeans平台,Java

我有一个带有蜡染和JSVGCanvas组件的SVG显示的应用程序。

我也叫svg.setDocumentState(JSVGCanvas.ALWAYS_DYNAMIC);

这是SVG文件:

<svg width="500" height="400" viewBox="0 0 250 200" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
<g id="hi" style="color:black; stroke:currentColor; stroke-width:0.4;">
    <g id="ks">
        <text id="textX" x="0" y="5" style="font-family:Arial; font-size:4.00pt; text-anchor:start">100%</text>
        <text id="textY" x="5" y="105" style="font-family:Arial; font-size:4.00pt; text-anchor:start">0%</text>
    </g>
</g>




就像现在一样,这个简单的SVG首先显示在应用程序中。现在,我从应用程序中获得了新的输入,并且需要向SVG文档中添加新的Elements。
我正在使用从JSVGCanvas获得的SVGDocument执行此操作。
这是一个例子:

Runnable run = new Runnable()
{
  @Override
  public void run()
  {
      Element elementById = SVGUtilities.getElementById(svgDocument, "g", "hi");
      Element createElement = svgDocument.createElement("g");
      createElement.setAttribute("id", "myID");
      Element rect = SVGUtilities.createRect(
        svgDocument, String.valueOf(xValue), yValue, String.valueOf(BARWIDTH),
        String.valueOf(barHeight), color);
      createElement.appendChild(rect);
      elementById.appendChild(createElement);
  }
};


为了执行更改,我现在将这些行包装在Runnable中,并将其放入UpdateManager队列中。

RunnableQueue updateRunnableQueue = updateManager.getUpdateRunnableQueue();
updateRunnableQueue.invokeAndWait(run);
((JSVGCanvas)canvas).setSVGDocument((SVGDocument)doc);


JSVGCanvas不会更新图形。

一些其他信息:


我也使用invokeLater(run)进行了尝试;这也不起作用
我不会更改文件,只是SVGDocument。因此,我不会将更改写入文件。我只是更改“文档”实例。
我将文档实例打印到控制台进行记录,结果恰好是我想要的,因此文档包含正确的元素和新元素。


控制台中SVG的结果为:

<svg xmlns:xlink="http://www.w3.org/1999/xlink" xmlns="http://www.w3.org/2000/svg" contentScriptType="text/ecmascript" width="500" zoomAndPan="magnify" contentStyleType="text/css" viewBox="0 0 250 200" height="400" preserveAspectRatio="xMidYMid meet" version="1.0">
<g style="color:black; stroke:currentColor; stroke-width:0.4;" id="hi">
    <g id="ks">
        <text x="0" id="textX" y="5" style="font-family:Arial; font-size:4.00pt; text-anchor:start">100%</text>
        <text x="5" id="textY" y="105" style="font-family:Arial; font-size:4.00pt; text-anchor:start">0%</text>
    </g>
<g id="25.0">
        <rect x="20.0" width="20.0" y="5.0" height="7.142857142857142" style="fill:#ff0000"/>
    </g>
</g>




您知道为什么我的图形不更新吗?我现在搜索了几天,但所做的更改(UpdateManager队列,setSVGDocument等)不起作用。我不知道该怎么办...

先感谢您。

问候
托比亚斯

最佳答案

SVG元素必须在SVG命名空间中创建。因此,不能使用createElement创建它们,而必须使用createElementNS创建它们

Element createElement = svgDocument.createElement("g");


是不正确的,需要这样写...

Element createElement = svgDocument.createElementNS(SVGDOMImplementation.SVG_NAMESPACE_URI, "g");


我不确定SVGUtilities是做什么的,因为您尚未提供该实现,但这也可能是错误的。

10-08 08:16