F
Frank Gerlach
I have some trouble with javac: The string constants I use contain
characters, with codes larger than the ASCII maximum.
Example:
public class language{
public static void main(String[] argv){
System.out.println("möglich");
}
}
generates this output:
m÷glich
How do I configure javac to use a different charset, eg. "ISO8859-1" ?
characters, with codes larger than the ASCII maximum.
Example:
public class language{
public static void main(String[] argv){
System.out.println("möglich");
}
}
generates this output:
m÷glich
How do I configure javac to use a different charset, eg. "ISO8859-1" ?