| Author |
problem with upload file using common file upload servlet
|
minhdung tran
Greenhorn
Joined: Dec 19, 2007
Posts: 9
|
|
Good afternoon,
I am having problem of saving an image to the /WebContent/images/ folder in my server. I think i may have missed something important in my codes , and i wonder if you all have any solution for it.
Below are my jsp code and java code
Thanks for all of your help.
Tom
|
 |
Paul Clapham
Bartender
Joined: Oct 14, 2005
Posts: 16483
|
|
|
I would start by finding information about the problem. Do error messages appear? Where? What do they say? That sort of thing. Just posting a bunch of code with no information about the failure mode isn't very helpful to anybody.
|
 |
minhdung tran
Greenhorn
Joined: Dec 19, 2007
Posts: 9
|
|
Paul,
sorry for missing the information to the problem. The code did not give me any error but it did not work as it should.
I think i may miss important component since in the code, i would like it to store the image at the /WebContent/upload folder in the server, but the image was not there when i ran it.
Thanks.
|
 |
Paul Clapham
Bartender
Joined: Oct 14, 2005
Posts: 16483
|
|
But here's where you write the file:
I see you have debugging code elsewhere, but I don't see any debugging code here to see whether that fileName variable does what you want.
|
 |
minhdung tran
Greenhorn
Joined: Dec 19, 2007
Posts: 9
|
|
Paul,
Sorry for not making myself clear. I don't know how to display the path of the file name variable
it should be at the /WebContent/Upload/image.gif as it indicated earlier in the context root and the setRepository
But it did not appear so. I think i miss some important point in my code
[code = java]
File saveFile = new File("/"+fileName);
[/code]
Thanks.
|
 |
Paul Clapham
Bartender
Joined: Oct 14, 2005
Posts: 16483
|
|
minhdung tran wrote:I don't know how to display the path of the file name variable...
Wouldn't that be
?
|
 |
minhdung tran
Greenhorn
Joined: Dec 19, 2007
Posts: 9
|
|
Good morning,
Thanks for your help. I displayed it and it gave me the path to my file system which resided on the C drive, not the server
path as i would like the image to be stored which is under myApp/WebContent/Upload/.
Also the program ran without any error but the image never store there myApp/WebContent/Upload/.
I don't know what i did wrong. Please help me if you could.
Thanks alot!
Tom
|
 |
 |
|
|
subject: problem with upload file using common file upload servlet
|
|
|