2
votes
4answers
85 views
Encoding cp1252
When i try the following in java
System.out.println(System.getProperty("file.encoding"));
i get cp1252 as the encoding
Is there a way to know where this value is coming from ? (Like Environment …
0
votes
2answers
33 views
communicate with a process in utf-8 on a cp1252 consoless
I need to control a program by sending commands in utf-8 encoding to its standard input. For this I run the program using subprocess.Popen():
proc = Popen("myexecutable.exe", shell=True, stdin=PIPE, …
3
votes
5answers
3k views
How to use Special Chars in Java/Eclipse
How can I use/display characters like ♥, ♦, ♣, or ♠ in Java/Eclipse?
Wenn I try to use them directly, i.e. in the source code, Eclipse cannot save the file:
What can I do?
Edit: How can I find …
