Re: How to get JSP pages in applet
Paul Hamaker wrote:
You can request the browser to open a URL with showDocument or,
provided the URL results in HTML3.2 being sent, without script,
plugins, applets, originating from the applet-serving host, you can
embed it using a JEDitorPane.
http://javalessons.com/cgi-bin/fun/java-tutorials-main.cgi?sub=gui&ses=ao789
: g58 and g42.
--------------------
Paul Hamaker, SEMM, teaching ICT since 1987
http://javalessons.com
I want to perform some fuction on opened jsp page by clicked on applet.
Only getting a jsp page is not my AIM.
I tried URL. like
public class URLReader {
public static void main(String[] args) throws Exception {
URL yahoo = new URL("http://www.gmail.com/");
BufferedReader in = new BufferedReader(
new InputStreamReader(
yahoo.openStream()));
String inputLine;
while ((inputLine = in.readLine()) != null)
System.out.println(inputLine);
in.close();
}
}
This give only HTML tags.
please give code for open tge jsp page and perform some function it.
TankQ