|
|
 |
| Pro JSP Advanced JSP coding questions. Beginning questions will be redirected to the Beginning JSP forum. |
Welcome to the p2p.wrox.com Forums.
You are currently viewing the Pro JSP section of the Wrox p2p Programmer to Programmer discussion community. This is a community of more than 40,000 computer programmers including Wrox book authors and readers. As a guest, you can read any forum posting. By joining our free Wrox p2p community you can post your own programming questions and respond to other programmers’ questions. Registered users also don't have to see the ads that are displayed to guests. Registration is fast, simple and absolutely free so please, join today!
Join today and post to win prizes! Post more to increase your chances of being Wrox’s top poster of the month.
|
 |

September 29th, 2004, 09:46 PM
|
|
Registered User
|
|
Join Date: Jan 2004
Location: , , .
Posts: 3
Thanks: 0
Thanked 0 Times in 0 Posts
|
|
File Upload in JSP
Hi,
Could somebody helps me on how to do file upload using JSP, is there ane direct way to do without using third party's API?
Thanks,
Jenty
|

September 30th, 2004, 05:14 AM
|
|
Friend of Wrox
|
|
Join Date: Jul 2004
Location: , , .
Posts: 204
Thanks: 0
Thanked 0 Times in 0 Posts
|
|
Hello,
You can upload from an HTML form.
There is a standard HTML form field that is for file uploads, i.e. it lets the user browse their local machine for the file they wish to upload. The form must use the POST method to upload the file, if you use the GET method you will only send the file name NOT the data.
You must also specify the encoding type for the form.
In the action for the form give the name of your servlet.
Within your servlet you will need to know how to parse posted data to strip out headers and new line characters added by the POST process. Once you have done this you will have your data on your server from where you can manipulate it, save it for file / database.
It is not the easiest thing I have learned, I would suggest you search the Sun Java site. there are tutorials on how to parse POST data which will help you.
|

September 30th, 2004, 05:21 AM
|
|
Friend of Wrox
|
|
Join Date: Jul 2004
Location: , , .
Posts: 204
Thanks: 0
Thanked 0 Times in 0 Posts
|
|
Hello again,
The tutorial I used was at:
http://java.sun.com/developer/online...k/aucserv.html
About half way down is the bit about posting data including code.
I should warn you that I got errors with the servlet code, this was to do with the way it tries to loop round headers.
You will have to play with it to get it working, but its not a bad place to start.
|

October 1st, 2004, 08:56 AM
|
|
Registered User
|
|
Join Date: Sep 2004
Location: Mumbai, Maharastra, India.
Posts: 4
Thanks: 0
Thanked 0 Times in 0 Posts
|
|
I have one jar file
com.orange.fupload.MultiPartRequest
u search this jar file on net if u want i have that one i can send to u the file and the code.
By using this u can directly upload the file on server of any format.
Regards
Gaurav Rathi
garathi@rediffmail.com
|
| Thread Tools |
Search this Thread |
|
|
|
| Display Modes |
Linear Mode
|
Posting Rules
|
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts
HTML code is Off
|
|
|
|
 |