Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • SEARCH
  • Home
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 8662439
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 12, 20262026-06-12T16:44:18+00:00 2026-06-12T16:44:18+00:00

How can I read a JPEG image in Servlet when I resize&upload it using

  • 0

How can I read a JPEG image in Servlet when I resize&upload it using Flash?

I have it in my doPost() method, but I cannot find the file. I cannot get it by request.getParameter(...).

When I get it with request.getInputStream() and write it to a file, then I cannot open it. Somehow the JPEG encoding is corrupted.

  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-06-12T16:44:19+00:00Added an answer on June 12, 2026 at 4:44 pm

    File upload requests over HTTP are usually sent using multipart/form-data request encoding and not using application/x-www-form-urlencoded encoding as you seem to expect with your getParameter() attempt. The getInputStream() gives you the entire request body, which is also not what you want. You basically need to parse it into useable parts and extract the uploaded file from it.

    If you’re already on Servlet 3.0 (which is already out for almost 3 years), then just use getPart() instead.

    Part uploadedFile = request.getPart("fieldName");
    InputStream uploadedFileContent = uploadedFile.getInputStream();
    // Now just write it to an arbitrary OutputStream the usual way.
    

    Or if you’re still on Servlet 2.5 or even older, then grab Apache Commons FileUpload.

    See also:

    • HTML specification chapter 17.13.4 – Form content types – describes the different form encoding types
    • How to upload files to server using JSP/Servlet? – contains more concrete examples of how to process a multipart/form-data request in a servlet
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

When I read a jpeg image using Magick::readImages(...) function. How can I know the
For instance, here is sample JPEG which I cannot SAVE (!) but can read
I have successfully been using CGImageSource to read an image in (mostly JPEG) and
I can read unmanaged memory in C# using UnmanagedMemoryStream, but how can I do
I want to read an image(JPEG) file from hard disk to memory. How can
How can I read all jpeg files in a directory using a Filestream so
how we can convert a pdf file to single jpeg? now i have using
Can you tell (let's say using .NET 4.0, WinForms) if a JPEG image is
We have extracted the jpeg image in the variable char *raw_image. How can we,
I know that libJPEG can read not the whole image, using jpeg_read_scanlines . Does

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.