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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 17, 20262026-06-17T12:19:54+00:00 2026-06-17T12:19:54+00:00

I’m processing a Unicode text file using the Java platform on OS X. When

  • 0

I’m processing a Unicode text file using the Java platform on OS X. When I open the file using TextEdit or TextWrangler instead of seeing “Nattvardsgästerna” I see “Nattvardsg‰sterna” (which is incorrect). When I open the file using the Java io stream, I see the same incorrect String “Nattvardsg‰sterna”.

When I open the file on my PC I see the correct String. I’m not sure where to start solving this problem… Is it an issue with my OS X set-up? Should I open the Java stream with a special flag?

Thanks.

P.S. I’m opening the file like so: fileReader = new BufferedReader(new FileReader(file));

P.S.S. Also, I should mention that I’d like to output the result as an SQL text file so it is important for the OS to distinguish ä correctly.

  • 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-17T12:19:55+00:00Added an answer on June 17, 2026 at 12:19 pm

    An InputStream reads bytes (not characters), so I assume when you say:

    When I open the file using java io stream

    … that you really mean “when I open the file using a Java Reader“.

    EDIT: Your comment says that you’re doing this:

    new BufferedReader(new FileReader(file));
    

    An InputStreamReader has a constructor that allows you to set the character encoding. If you don’t specify one, it will use the platform default. It’s unlikely the platform default will be unicode (on my Macbook, it’s set to “US-ASCII”).

    In order to set the character encoding, you must create the intermediate input stream reader rather than that letting FileReader do it for you (because FileReader uses the platform default encoding).

    Assuming the file is encoding using UTF-8, use:

    new BufferedReader(new InputStreamReader(new FileInputStream(file), 
                                             Charset.forName("UTF-8")));
    

    Alternatively, you can change the platform default by supplying an argument to the JVM. You can look at this answer for the full details, but the basic idea is that you set the file.encoding Java system property. The linked answer provides a few ways to achieve this.

    FURTHER EDIT:

    P.S.S. Also, I should mention that I’d like to output the result as an SQL text file so it is important for the OS to distinguish ä correctly.

    The OS hasn’t got anything to do with this. The file system is just shuffling bytes around. How those bytes are interpreted is entirely up to the applications that are reading those files. This answer tells you how to make your Java program interpret the bytes correctly. For your database to be able to interpret the bytes correctly, you’ll need to configure the database encoding.

    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

We are using XSLT to translate a RIXML file to XML. Our RIXML contains
I'm trying to convert HTML to plain text. I get many &\#8217; &\#8220; etc.
I have been unable to fix a problem with Java Unicode and encoding. The
I have thousands of HTML files to process using Groovy/Java and I need to
I have a reasonable size flat file database of text documents mostly saved in
I have a .ini file as follows: [playlist] numberofentries=2 File1=http://87.230.82.17:80 Title1=(#1 - 365/1400) Example
link Im having trouble converting the html entites into html characters, (&# 8217;) i
That's pretty much it. I'm using Nokogiri to scrape a web page what has
I have just tried to save a simple *.rtf file with some websites and
I am using JSon response to parse title,date content and thumbnail images and place

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.