aspose file tools
The moose likes Struts and the fly likes Need fetch fullpath of a file uploaded Big Moose Saloon
  Search | Java FAQ | Recent Topics
Register / Login
JavaRanch » Java Forums » Frameworks » Struts
Reply Bookmark "Need fetch fullpath of a file uploaded" Watch "Need fetch fullpath of a file uploaded" New topic
Author

Need fetch fullpath of a file uploaded

Jiya Khan
Greenhorn

Joined: Jul 07, 2009
Posts: 3
Hi,

I want full path of the image uploaded through struts file upload.

AbcForm frm= (AbcForm)form;

FormFile image1 = galform.getTheFile1();

image1 is giving only filename. but i want full path of that file like "C:\temp\DSC00263.JPG";

could anybody please tel how can i do it..

Regards,
jiya
shirish katti
Ranch Hand

Joined: Nov 09, 2009
Posts: 34
Using java it is very easy..

You can get the path of a file as below

File f=new File("fileName");
system.out.println(f.getAbsolutePath());
 
I agree. Here's the link: http://zeroturnaround.com/jrebel - it saves me about five hours per week
 
subject: Need fetch fullpath of a file uploaded
 
Similar Threads
How to get the path of an Uploaded file?
how to handle file uploads in spring
how to set the file path in struts for file upload
get full path
Download pdf file in struts2