Tagged Questions

5
votes
5answers
13k 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 ...
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 ...
1
vote
1answer
264 views

Decode Inputsteam with CP1252 encoding in java

The Inputstream that i receive from a post request through ExtJS is in CP1252 encoding. How do i decode the Inputsteam so that i can use the json string and convert it to the appropriate java bean. I ...