结合Gui和Processing

时间:2016-11-06 22:20:29

标签: java eclipse user-interface processing

我试图将一个Processing Project添加到WindowBuilder Gui中。经过几次不同的尝试,我抬起头来发现了这个:

http://www.sebastianoliva.com/en/en/2010/05/using-a-processing-sketch-as-a-java-component/trackback/index.html

创建完全相同的项目后,我仍然有一些错误:

Exception in thread "main" java.lang.Error: Unresolved compilation problems: 
The method add(Component) in the type Container is not applicable for the arguments (PApplet)
The method init() is undefined for the type PApplet

at processJava.DisplayFrame.<init>(DisplayFrame.java:9)
at processJava.Main.main(Main.java:5)

我该如何修复这两个?

1 个答案:

答案 0 :(得分:0)

从处理3开始,PApplet不再扩展Applet,因此它不能用作另一个gui中的组件。

您可以使用runSketch()函数从Java启动草图,但这将在其自己的单独窗口中。