1

我有一个 CellTable 显示在 GFlot SimplePlot 中绘制的数据。

使用 GFlots 集成功能可以导出绘图:

    exportImage = plot.getImage();

现在我也想导出 CellTable,以在绘图中显示相应的数据。这在客户端的 GWT 是否可能以某种方式实现?它不必是 CellTable 本身,只要它显示的数据就足够了。

4

1 回答 1

0

我认为您可以使用 flash4j 库:

package com.emitrom.flash4j.demo.client;

import com.emitrom.flash4j.clientio.client.ClientIO;
import com.google.gwt.core.client.EntryPoint;
import com.google.gwt.event.dom.client.ClickEvent;
import com.google.gwt.event.dom.client.ClickHandler;
import com.google.gwt.user.client.ui.Button;
import com.google.gwt.user.client.ui.RootPanel;

public class ClientIOExample implements EntryPoint {
@Override
public void onModuleLoad() {
    // initialize the ClientIO module
    ClientIO.init();

    Button b = new Button("Click Me");
    b.addClickHandler(new ClickHandler() {
        @Override
        public void onClick(ClickEvent event) {
            // create a PDF File
            PDF pdf = new PDF();
            pdf.addPage();
            pdf.setTextStyle(new RGBColor(0x000000));
            pdf.setFont(new CoreFont(), 10);
            pdf.addText("");
            ClientIO.saveFile(pdf.save(), "file.pdf");
        }
    });
    RootPanel.get().add(b);
}
}

您可以通过链接查看更多详细信息

于 2014-04-16T12:04:46.770 回答