所以經過一番研究,我實現了帆布使用JavaFX畫,這裏是一個簡單的例子:
首先,我做這在一個單獨的線程(我使用Spring taskExecutor的,但一個普通的Java正在啓動的JavaFX應用程序線程可以使用)。
public class ChartGenerator extends Application {
private static Canvas canvas;
private static volatile byte[] result;
public static void initialize(TaskExecutor taskExecutor) {
taskExecutor.execute(new Runnable() {
@Override
public void run() {
launch(ChartGenerator.class);
}
});
}
public static synchronized byte[] generateChart(final Object... params) {
Platform.runLater(new Runnable() {
@Override
public void run() {
ByteArrayOutputStream baos = null;
try {
GraphicsContext gc = canvas.getGraphicsContext2D();
gc.clearRect(0, 0, canvas.getWidth(), canvas.getHeight());
/**
* Do the work with canvas
**/
final SnapshotParameters snapshotParameters = new SnapshotParameters();
snapshotParameters.setFill(Color.TRANSPARENT);
WritableImage image = canvas.snapshot(snapshotParameters, null);
BufferedImage bImage = SwingFXUtils.fromFXImage(image, null);
baos = new ByteArrayOutputStream();
ImageIO.write(bImage, chartType.outputFormat, baos);
result = baos.toByteArray();
} catch (InstantiationException e) {
throw new ChartGenerationException(e);
} catch (IllegalAccessException e) {
throw new ChartGenerationException(e);
} catch (NoSuchMethodException e) {
throw new ChartGenerationException(e);
} catch (InvocationTargetException e) {
throw new ChartGenerationException(e);
} catch (IOException e) {
throw new ChartGenerationException(e);
} finally {
IOUtils.closeQuietly(baos);
}
}
});
while (result == null) {
//wait
}
byte[] ret = result;
result = null;
return ret;
}
@Override
public void start(Stage stage) {
canvas = new Canvas();
}
public static class ChartGenerationException extends RuntimeException {
public ChartGenerationException(String message) {
super(message);
}
public ChartGenerationException(Throwable cause) {
super(cause);
}
}
}
然後我打電話時Spring應用程序被啓動初始化()方法:
@Autowired private TaskExecutor taskExecutor;
@PostConstruct private void initChartGenerator() {
ChartGenerator.initialize(taskExecutor);
}
五言的這種溶液可以移植到非Spring應用程序。
這是一個單線程的解決方案(在我的情況下,這是不夠的),但我認爲這可能是採用多線程的使用(可能使用RMI調用Draw方法)。
而且這個解決方案工作「的是」我的Windows工作站上,而在Linux服務器環境的一些額外的行動應被調用:
- 不能OpenJDK的使用JavaFX的(如2013年8月的) - 必須切換到Oracle JDK
- Java版本必須是沒有比Java少7u6
最複雜的 - 你必須使用虛擬的顯示,使JavaFX的無頭環境中運行:
的apt-get安裝xvfb的
//然後在應用程序服務器啓動:
出口顯示器= 「99」
啓動 - 停止 - 守護--start --background --user碼頭--exec「在/ usr/bin中/須藤」 - -u碼頭的/ usr /斌/的Xvfb:99 -screen 0 1024x768x24
PS您也可以使用此解決方案在服務器端使用其他JavaFX功能(例如,將html導出爲圖像)。
這很酷。我很高興嘗試它。感謝您的努力! – GGrec