The only one that I know of off hand that is free is Forte (found at http://www.sun.com/forte/ffj/ce/ ). I am sure that there are many others though. A plain text editor is all that is really needed anyway, though the syntax highlighting in Forte is handy... Anyone know of any others easy/cheap to get hold of? Andrew > -----Original Message----- > From: joydeep [mailto:[EMAIL PROTECTED]] > Sent: 12 July 2000 05:39 > To: [EMAIL PROTECTED] > Subject: Re: Using Runtime.getRuntime().exec() function > > > Hi Andrew, > > could u suggest any JSP editor which is downloadable from any site. > > Thanks > > Joydeep > > -----Original Message----- > From: Andrew Craig <[EMAIL PROTECTED]> > To: [EMAIL PROTECTED] <[EMAIL PROTECTED]> > Date: Tuesday, July 11, 2000 5:59 PM > Subject: Re: Using Runtime.getRuntime().exec() function > > > >You are trying to exec a program called "java > ApplicationName" by doing > >that. > > > >Instead try : > > > >String cmd[]=new String[2]; > >cmd[0]="java"; > >cmd[1]="ApplicationName"; > >try { > > Runtime.getRuntime().exec(cmd); > >} catch(java.io.IOException e) { > >} > > > >As far as I remember this should work... > > > > > >Andrew > > > > > >> -----Original Message----- > >> From: Ritesh_Srivastava [mailto:[EMAIL PROTECTED]] > >> Sent: 11 July 2000 13:06 > >> To: [EMAIL PROTECTED] > >> Subject: Using Runtime.getRuntime().exec() function > >> > >> > >> Runtime.getRuntime().exec("notepad") works but > >> Runtime.getRuntime().exec("java ApplicationName") does not works. > >> > >> What can be the possible reason.? > >> Ritesh > >> > >> ============================================================== > >> ============= > >> To unsubscribe: mailto [EMAIL PROTECTED] with body: > >> "signoff JSP-INTEREST". > >> Some relevant FAQs on JSP/Servlets can be found at: > >> > >> http://java.sun.com/products/jsp/faq.html > >> http://www.esperanto.org.nz/jsp/jspfaq.html > >> http://www.jguru.com/jguru/faq/faqpage.jsp?name=JSP > >> http://www.jguru.com/jguru/faq/faqpage.jsp?name=Servlets > >> > > > >============================================================= > ============== > >To unsubscribe: mailto [EMAIL PROTECTED] with body: "signoff > JSP-INTEREST". > >Some relevant FAQs on JSP/Servlets can be found at: > > > > http://java.sun.com/products/jsp/faq.html > > http://www.esperanto.org.nz/jsp/jspfaq.html > > http://www.jguru.com/jguru/faq/faqpage.jsp?name=JSP > > http://www.jguru.com/jguru/faq/faqpage.jsp?name=Servlets > > ============================================================== > ============= > To unsubscribe: mailto [EMAIL PROTECTED] with body: > "signoff JSP-INTEREST". > Some relevant FAQs on JSP/Servlets can be found at: > > http://java.sun.com/products/jsp/faq.html > http://www.esperanto.org.nz/jsp/jspfaq.html > http://www.jguru.com/jguru/faq/faqpage.jsp?name=JSP > http://www.jguru.com/jguru/faq/faqpage.jsp?name=Servlets > =========================================================================== To unsubscribe: mailto [EMAIL PROTECTED] with body: "signoff JSP-INTEREST". Some relevant FAQs on JSP/Servlets can be found at: http://java.sun.com/products/jsp/faq.html http://www.esperanto.org.nz/jsp/jspfaq.html http://www.jguru.com/jguru/faq/faqpage.jsp?name=JSP http://www.jguru.com/jguru/faq/faqpage.jsp?name=Servlets
