nyanev
nyanev

Reputation: 11519

Java servlet upload file and get post parameter

I want to upload from iphone to servlet registration data and pictures of user. Can I do that in one request or should I do two requests? Thanks a lot :)

Upvotes: 0

Views: 932

Answers (1)

AlexR
AlexR

Reputation: 115328

Yes, you can do this in one request. It is called multipart form. This is actually what happens when you submit form from your web browser. To save time you can use FileUplodad from Jakarta.

Upvotes: 1

Related Questions