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 6236987
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 24, 20262026-05-24T10:56:47+00:00 2026-05-24T10:56:47+00:00

I am not able to read a UTF-8 characters from the file as bytes.

  • 0

I am not able to read a UTF-8 characters from the file as bytes.
the UTF-8 characters are displaying as questionmarak(?) while converting to character from the bytes.

Below code snippet shows file reading.

Please tell me how can we read UTF-8 chanracters from a file.
and plz tell me what is the problem with byte array reading process?

public static void getData {

    FormFile file = actionForm.getFile("UTF-8");

     byte[] mybt;
     try 
     {

                byte[] fileContents = file.getFileData();
        StringBuffer sb = new StringBuffer();
        for(int i=0;i<fileContents.length;i++){
            sb.append((char)fileContents[i]);
        }
        System.out.println(sb.toString());
    } catch (UnsupportedEncodingException e) {
        e.printStackTrace();
    }
   }

 Output ::??Docum??ents (input file content is : "ÞDocumÿents" , it contains some spanish characters. )
  • 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-24T10:56:48+00:00Added an answer on May 24, 2026 at 10:56 am

    This is the problem:

    for(int i=0;i<fileContents.length;i++){
        sb.append((char)fileContents[i]);
    }
    

    You’re converting each byte to a char just by casting it. That’s effectively using ISO-Latin-1.

    To read text from an InputStream, you adapt it via InputStreamReader, specifying the character encoding.

    The simplest way of reading the whole of a file into a string would be to use Guava:

    String text = Files.toString(file, Charsets.UTF_8);
    

    Or to convert a byte array:

    String text = new String(fileContents, "UTF-8");
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

i am getting response from server in utf-8 but not able to read that.
I am not able to read the appSettings from the config file ( MyService.exe.config
I am not able to read the contents in the file if I manually
I've read the DateFormatting guide and I'm still not able to get a working
I have not been able to find a way to cancel/terminate asynchronous read operation
My issue is not able to render the chart in .tpl file. The following
Actually my problem is that I'm not able to read a cookie value. It
I followed the example code in the libjpeg example file, however I was not
How to read a file into textview with proper displaying as like in text
After I added a filter to my app, I am not able to read

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.