Hello
I am not getting any exception when i run locally but when i run the web application on the remote tomcat application server as a service then i am getting java.io.FilenotfoundException. The following is the code which i have used in the action class in struts 2.0
File srcfile = new File(srcfile path)----> this is the uploaded file path.
Then when i check for the existence of the file it gives error message that the file does not exist.
File desfile = new File(despath)-----> destination Path where i store my file.
Inputstream in = new Fileinputstream(srcfile)
byte[] arr = new byte[1024]
in.read(byte) ----> Here it gives file not found exception when i try to read the file.
I am not able trace the problem
Kindly help me it is major issue