Tagged Questions
2
votes
4answers
1k 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
210 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, ...