Michael Dizon wrote: > > Is there a way for me to call an external application in Java? >
java.lang.Runtime.exec() For questions like this, you generally want to look at the api javadocs first, then try a search engine like google. It's also generally worth checking out the servlet FAQs at jGuru. You'll get answers much faster that way (and they're more likely to be correct :-) Oblig. Servlets: some servlet containers allow you to set up a security sandbox that prevent servlets from calling methods like Runtime.exec(). -- Christopher St. John [EMAIL PROTECTED] DistribuTopia http://www.distributopia.com ___________________________________________________________________________ To unsubscribe, send email to [EMAIL PROTECTED] and include in the body of the message "signoff SERVLET-INTEREST". Archives: http://archives.java.sun.com/archives/servlet-interest.html Resources: http://java.sun.com/products/servlet/external-resources.html LISTSERV Help: http://www.lsoft.com/manuals/user/user.html
