Get Rid of Un-mappable Character for Encoding Cp1252 when Compiling Java
#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
open-source and open to improvement — file an issue or suggest changes via github