esuslogo
 [To advertise Java(tm) Events here, contact joris@esus.com!]
banner

Java™
by example!






New @ Esus.com


  gb  In-house search engine for better results!

  gb  Get updates with the esus.com
newsletter!









  Home 
 Browse Categories 
 Ask a Java Question 
 Help 
  For Java Tips & Tricks, subscribe to the esus.com newsletter!
Search Java Q&A, Links, API's:   adv 

How do I execute a CGI script from within my program?


 
// Fetch text results from URL
// URL can point to a web page or CGI application
// and may include URL encoded GET variables

String URLFetch( String sURL )
{
String sResult = "";

try {
URL CGIurl = new URL(sURL);

URLConnection c = CGIurl.openConnection();

c.setUseCaches(false);

BufferedReader in = new BufferedReader(new InputStreamReader(c.getInputStream()));

// read text output of CGI into sResult
String aLine;
while ((aLine = in.readLine()) != null) {
// data from the CGI
sResult = sResult + aLine + "\n";
}
}
catch (MalformedURLException mue) {
System.err.println ("Invalid URL");
}
catch (IOException ioe) {
System.err.println ("I/O Error - " + ioe);
}

return sResult;
}




Further Information
Author of answer: Stephen Jones

Comments to this answer are only viewable by members. Login or become a member!





Terms of Service | Privacy Policy | Contact

Copyright © 2000-2003 Esus.com - All Rights Reserved 
Java and all Java-based trademarks are trademarks of Sun Microsystems, Inc. Esus.com is independent of Sun Microsystems, Inc. All other trademarks are the sole property of their respective owners.