: 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