Reputation: 75
I have a bulk of Java-files in Eclipse that was written when my Eclipse had CP1252 as encoding. I am in Sweden and we have special character (Å å Ä ä Ö ö). Now we have changed the encoding to UT-8. All special characters is ruined now to strange characters instead!! Is there any other solution instead of open each file and rewrite all the special characters again?
Upvotes: 4
Views: 2565
Reputation: 21
I was facing the same issue in my project. Here are the steps that I followed:
Run your project, it should not give any warnings or errors for those characters now.
Upvotes: 2