• 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
  • Tim Cooke
  • paul wheaton
  • Paul Clapham
  • Ron McLeod
Sheriffs:
  • Jeanne Boyarsky
  • Liutauras Vilda
Saloon Keepers:
  • Tim Holloway
  • Carey Brown
  • Roland Mueller
  • Piet Souris
Bartenders:

Physical Path of a file

 
Greenhorn
Posts: 5
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
Please help me..
How can i get the physical path of a file from JSP/servlet
request.getPathInfo() and request.getPathTranslated() giving me null...
Thnaks in advance
 
Greenhorn
Posts: 16
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
prolly ya could create a temp file and use it to determine your absolute path and delete it after?
String tempName = "foo";
File temp = new File(tempName);
temp.createNewFile();
String path = temp.getAbsolutePath();
String path = path.substring(0, path.indexof(tempName));
something this way should werk, grtx
eric
[This message has been edited by eric clark (edited February 14, 2001).]
 
Anoosh Rahman
Greenhorn
Posts: 5
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
Thank you.. eric clark for your fast response,
it does not give the actual physical path..
I have got the correct answer
using the getRealPath() of servletContext
it's working fine
Regards
 
reply
    Bookmark Topic Watch Topic
  • New Topic