0

我想将图表数据(来自 java 服务)导出到 excel。我需要为此创建数据网格吗?

4

2 回答 2

1

My preference, when needing to provide excel output, is to send the data to the server and generate the excel sheet there.

There is one library, named as3xls which claims to read and write excel files from AS3; so I would recommend you look into that.

于 2012-05-29T13:26:58.310 回答
0

一种选择是在客户端使用 as3xls ,我在这里的食谱中为此创建了一个示例:Import/Export。您还可以在 Java 层上使用 Apache POI,因为它为文档生成提供了更多支持。

您无需为图表创建 Datagrid。您的图表必须使用一些系列(可能是一个数组)来显示该数据。如果您只是想将该数据导出到 excel 中,则可以从中创建一个 ArrayCollection 并使用 as3xls。如果您的数据包含原生字母/字符,那么 as3xls 可能会有一些问题。在这种情况下,最好在服务器端进行。

于 2012-07-09T03:08:10.417 回答