"unmappable character for encoding" warning in Java
Use the "\uxxxx" escape format.
According to Wikipedia, the copyright symbol is unicode U+00A9 so your line should read:
String copyright = "\u00a9 2003-2008 My Company. All rights reserved.";
Try with: javac -encoding ISO-8859-1 file_name.java