如何通过ssh运行Java框架
我必须运行一个Java程序,其中有一个嵌入在框架内的小程序。 我这样做是因为我想将applet作为应用程序运行。
当我在本地机器上运行它时,它运行得非常棒,但它不会在远程机器上运行。 该程序似乎正在运行我的主(),但我无法看到窗口。
我试过ssh -X和ssh -t但没用。
这是测试代码
public static void main(String args[]){ final DatingGUI applet = new DatingGUI(); applet.init(); applet.start(); Frame frame = new Frame("RKY-Dating-Game Applet"); frame.addWindowListener(new WindowAdapter() { public void windowClosing(WindowEvent e) { System.exit(0); } }); frame.add(applet); frame.setSize(IDEAL_WIDTH,IDEAL_HEIGHT); frame.setVisible(true); }
任何帮助表示赞赏。
谢谢。
那么,我想通了。 我的Mac中缺少插件x11。 我安装了它并解决了问题。
链接地址: http://www.djcxy.com/p/23861.html