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

  • Home
  • SEARCH
  • 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 7582453
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 30, 20262026-05-30T18:26:16+00:00 2026-05-30T18:26:16+00:00

I want to set a UTF-8 Encoding to a MultipartEntity object or to StringBody

  • 0

I want to set a UTF-8 Encoding to a MultipartEntity object or to StringBody object. Is there any way to do it? I know how to set the Charset but not the Encoding.

Thank you.

  • 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-05-30T18:26:18+00:00Added an answer on May 30, 2026 at 6:26 pm

    This is from an anddev.org post at this link, but is currently down, so I have pasted the snippet below. I haven’t tried this code, but I hope it helps.

    MultipartEntity multipart = new MultipartEntity();
    File file = new File("/filepath");  // File with some location (filepath)
    Charset chars = Charset.forName("UTF-8"); // Setting up the encoding
    FileBody fileB = new FileBody(file); // Create a new FileBody with the above mentioned file
    multipart.addPart("data", fileB); // Add the part to my MultipartEntity. "data" is parameter name for the file
    StringBody stringB;  // Now lets add some extra information in a StringBody
    try {
        stringB = new StringBody("I am the caption of the file",chars);  // Adding the content to the StringBody and setting up the encoding
        multipart.addPart("caption", stringB); // Add the part to my MultipartEntity
    } catch (UnsupportedEncodingException e) {
        // TODO Auto-generated catch block
        e.printStackTrace();
    }
    
    HttpPost post = new HttpPost(url); // Setting up a HTTP Post method with the target url
    post.setEntity(multipart); // Setting the multipart Entity to the post method
    HttpResponse resp = client.execute(post);  // Using some HttpClient (I'm using DefaultHttpClient) to execute the post method and receive the response
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I want set Listbox background to transparent but not working Is there any idea?
Is there a way to identify whether the browser encoding is set to/supports UTF-8
I want to set some attributes just before the object is serialized, but as
Does anybody know how to set the encoding in FPDF package to UTF-8? Or
Is there a way which checks a CSV-file for UTF-8 without BOM encoding? I
I want to set a background image for a div, in a way that
I want to set a breakpoint on the __DoPostBack method, but it's a pain
I want to set registry keys in following way if OS is Vista then
I want to set my Django site to use UTF-8 for MySQL in a
I want to have the encoding of my project's file to be set to

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.