Get Rid of Un-mappable Character for Encoding Cp1252 when Compiling Java
Ignatius Bagussuputra #tutorial#codingThere are 2 ways to get rid of it
-
Add the encoding option on compile command
javac -Dfile.encoding=UTF-8 your_appname.java
-
Add the command to the System Variable
Variable name: JAVA_TOOL_OPTIONS
Variable value: -Dfile.encoding=UTF-8
See something to improve or fix? In the spirit of open-source, you can create a new issue or contribute directly to this article by sending a Pull Request on GitHub!