Re: Quick Servlet Question

2001-11-29 Thread Hong Jiang
Try this, File myFile = new File(yourServletName); String myPath = theFile.getAbsolutPath(); Hong Brandon Cruz wrote: Is there a way to use the request object or anything else to get the real path to a folder that the servlet resides in? I want it to return a string like...

RE: Quick Servlet Question

2001-11-29 Thread Brandon Cruz
Exactly, but that method seems to be deprecated. -Original Message- From: DONNIE HALE [mailto:[EMAIL PROTECTED]] Sent: Thursday, November 29, 2001 3:26 PM To: [EMAIL PROTECTED] Subject: Re: Quick Servlet Question You mean like: HttpServletRequest.getRealPath(/); Donnie [EMAIL

RE: Quick Servlet Question

2001-11-29 Thread Carsten Lingemann
try javax.servlet.ServletContext.getRealPath(/) Carsten -Original Message- From: Brandon Cruz [mailto:[EMAIL PROTECTED]] Sent: Thursday, November 29, 2001 4:32 PM To: Tomcat Users List Subject: RE: Quick Servlet Question Exactly, but that method seems to be deprecated

RE: Quick Servlet Question

2001-11-29 Thread Ryan Lubke
: Re: Quick Servlet Question You mean like: HttpServletRequest.getRealPath(/); Donnie [EMAIL PROTECTED] 11/29/01 04:06PM Is there a way to use the request object or anything else to get the real path to a folder that the servlet resides in? I want it to return a string like

Re: Quick Servlet Question

2001-11-29 Thread Bo Xu
- Original Message - From: Brandon Cruz [EMAIL PROTECTED] To: Tomcat Users List [EMAIL PROTECTED] Sent: Thursday, November 29, 2001 4:06 PM Subject: Quick Servlet Question Is there a way to use the request object or anything else to get the real path to a folder that the servlet

Re: Quick Servlet Question

2001-11-29 Thread Matt Egyhazy
ive found the ResourceBundle class to be easier to use than an istream approach for getting properties. matt - Original Message - From: Bo Xu [EMAIL PROTECTED] To: Tomcat Users List [EMAIL PROTECTED] Sent: Thursday, November 29, 2001 5:28 PM Subject: Re: Quick Servlet Question