62,620
社区成员
发帖
与我相关
我的任务
分享extends JApplet
private static final String _SELF = "_self";
private static final String _PARENT = "_parent";
private static final String _TOP = "_top";
private static final String _BLANK = "_blank";
AppletContext appletContext = this.getAppletContext();
public void openURL(URL url, String target) throws MalformedURLException {
appletContext.showDocument(url, target);
}