setPage(new URL("http://www.163.com/index.html"));
显示的就是乱七八糟的页面,是不是java无法做像浏览器那样的东西呢,但是applet又怎么能实现浏览一个网页的呢?
谢谢,希望多多参与,参与给分
12 个解决方案
#1
在Applet中
String urlstr = "http://www.163.com/index.html";
try {
URL url = new URL(urlstr);
getAppletContext().showDocument(url, "_blank");
}
catch (Exception ee) {}
String urlstr = "http://www.163.com/index.html";
try {
URL url = new URL(urlstr);
getAppletContext().showDocument(url, "_blank");
}
catch (Exception ee) {}
#2
在Applet中当然知道了,我必须在application中实现,我现在就是想知道是不是目前以java的环境,还不能实现这个功能,这样,我也能死心了
#3
up
#4
到底能否实现,请专家级人物下个定论好吗?
#5
up
#6
up
#7
JTextPane,JEditorPane只支持HTML1.0
#8
JTextPane,JEditorPane只支持HTML3.2
#9
to : dinosaur_cl(慧剑) :
也就是说在java应用程序中,想浏览网页,没希望了,但是applet中为什么支持呢?
也就是说在java应用程序中,想浏览网页,没希望了,但是applet中为什么支持呢?
#10
up
#11
applet中可能是通过浏览器显示的
#12
Applet 的确是通过外部浏览器来实现的。
#1
在Applet中
String urlstr = "http://www.163.com/index.html";
try {
URL url = new URL(urlstr);
getAppletContext().showDocument(url, "_blank");
}
catch (Exception ee) {}
String urlstr = "http://www.163.com/index.html";
try {
URL url = new URL(urlstr);
getAppletContext().showDocument(url, "_blank");
}
catch (Exception ee) {}
#2
在Applet中当然知道了,我必须在application中实现,我现在就是想知道是不是目前以java的环境,还不能实现这个功能,这样,我也能死心了
#3
up
#4
到底能否实现,请专家级人物下个定论好吗?
#5
up
#6
up
#7
JTextPane,JEditorPane只支持HTML1.0
#8
JTextPane,JEditorPane只支持HTML3.2
#9
to : dinosaur_cl(慧剑) :
也就是说在java应用程序中,想浏览网页,没希望了,但是applet中为什么支持呢?
也就是说在java应用程序中,想浏览网页,没希望了,但是applet中为什么支持呢?
#10
up
#11
applet中可能是通过浏览器显示的
#12
Applet 的确是通过外部浏览器来实现的。