- 威望
- 0
- 貢獻
- 235
- 參與
- 180
- GJ
- 1060
- 註冊時間
- 2004-10-30
|
3#
發表於 2009-12-27 21:21
| 只看該作者
我在網路找的方式是這樣
static public void main (String argv[]) {
final Applet applet = new NetGame();
System.runFinalizersOnExit(true);
JFrame frame = new JFrame();
applet.setSize(635,390);
frame.addWindowListener (
new java.awt.event.WindowAdapter()
{
public void windowClosing (
java.awt.event.WindowEvent e)
{
applet.stop();
applet.destroy();
System.exit(0);
}
});
frame.add ( "Center",applet);
frame.setSize(635,390 + 20);
frame.show();
applet.init();
applet.start();
frame.pack();
frame.setVisible(true);
}
現在是title下面是整片空白
編譯會出現- Note: F:西瓜棋ClientNetGame.java uses or overrides a deprecated API.
- Note: Recompile with -Xlint:deprecation for details.
複製代碼 我也是想說擋掉了..
不過在網路上都找不到可以解決的方法呢...
[ 本文最後由 狂龍聖影 於 2009-12-27 21:28 編輯 ] |
|