Reputation: 1078
error: unmappable character for encoding UTF-8. Because of copyright character, I am getting this error. I am using Netbeans 7.2.
/**
* � 2006
*
* This class was generated by the JAX-WS RI.
* JAX-WS RI 2.2.6-2b01
* Generated source version: 2.1
*
Upvotes: 10
Views: 24797
Reputation: 123
I used all of the solutions here, but the problem persisted. Finally,
I have resolved this problem:
Upvotes: 0
Reputation: 824
Right-click the project node in the Projects window and choose Properties. In the left column under Categories, select Sources. And set it to ISO-8859-1
Upvotes: 1
Reputation: 2694
You have to set the project's encoding correctly.
Right click on your project -> Properties -> Sources -> Encoding
Windows 1252 is a good option to try. It worked for me.
Upvotes: 8
Reputation: 1503280
It sounds like you have two options:
Personally I'd favour the first option if possible - UTF-8 is a nice "everything supports it" encoding
Upvotes: 5