• Post Reply Bookmark Topic Watch Topic
  • New Topic
programming forums Java Mobile Certification Databases Caching Books Engineering Micro Controllers OS Languages Paradigms IDEs Build Tools Frameworks Application Servers Open Source This Site Careers Other Pie Elite all forums
this forum made possible by our volunteer staff, including ...
Marshals:
  • Campbell Ritchie
  • Jeanne Boyarsky
  • Ron McLeod
  • Paul Clapham
  • Liutauras Vilda
Sheriffs:
  • paul wheaton
  • Rob Spoor
  • Devaka Cooray
Saloon Keepers:
  • Stephan van Hulst
  • Tim Holloway
  • Carey Brown
  • Frits Walraven
  • Tim Moores
Bartenders:
  • Mikalai Zaikin

applets: From memory to applets viewer

 
Greenhorn
Posts: 1
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
hi
am completely new to the world of java
am working on the project to dispaly apache server status.
I was able to access the file from a remote site as shown below
can anyone help me as to how to pass the information htmlPage(BufferedReader type)from buffer to an applet, so that i can view the information in an applet,rather than Console i/o.
I appreciate inadvance
Here is my code.
import java.net.*;
import java.io.*;
import java.util.*;
class masreader3 {
public static void main(String[] args) throws Exception {
String dataLine;
String masString;
try{
//Get URL object
URL masapache = new URL("http://myserver/server-status/");
//Open a connection to the URL and get a
// URLConnection object.
URLConnection urlConnection = masapache.openConnection();
//Use the connection to get and display the URL
System.out.println(urlConnection.getURL());
//Use the connection to get and display the date last
// modified.
Date lastModified = new Date(
urlConnection.getLastModified());
System.out.println(lastModified);
//Use the connection to get and display the content
// type.
System.out.println(urlConnection.getContentType());
//Use the connection to get an InputStream object.
// Use the InputStream object to instantiate a
// DataInputStream object.
BufferedReader htmlPage =
new BufferedReader(new InputStreamReader(
masapache.openStream()));
//
//Use the DataInputStream object to read and display
// the file one line at a time.
while((dataLine = htmlPage.readLine()) != null){
System.out.println(dataLine);
}//end while loop
}//end try
catch(UnknownHostException e){
System.out.println(e);
System.out.println(
"Must be online to run properly.");
}//end catch
catch(MalformedURLException e){System.out.println(e);}
catch(IOException e){System.out.println(e);}
}//end main
}//end class masreader2

 
Don't get me started about those stupid light bulbs.
reply
    Bookmark Topic Watch Topic
  • New Topic