使用java创建XML highcharts文件

时间:2012-02-06 12:37:21

标签: java xml highcharts

问题是如何为我创建这个xml文件,以便能够在highcharts的get函数中使用它? CSV文件是快速创建的,但现在我想从后端创建xml文件,即java。

<chart>
  <categories>
    <item>..</item>
  </categories>
  <series>
    <name>xxx</name>
    <data>
      <point>1</point>
      <point>2</point>
      <point>3</point>
      <point>4</point>
    </data>
  </series>
</chart>

根据要求:

<chart>
<categories>
<item>Apples</item>  these two items must be populated from the database
<item>Pears</item>
</categories>
<series>
<name>John</name>   this one also from database
<data>
<point>8</point>    this is the data part, retrieved from database
<point>4</point>
<point>6</point>
<point>5</point>
</data>
</series>
</chart>

我想使用java方法或类创建这种类型的xml结构,其中我检索所需的所有信息,然后传入xml文件。

1 个答案:

答案 0 :(得分:0)

无论如何,我现在正在使用xml为highcharts填充数据..感谢您的回答