Tagged Questions

6
votes
2answers
5k views

printable char in java

Does anyone knows how to detect printable characters in java? After a while ( trial/error ) I get to this method: public boolean isPrintableChar( char c ) { Character.UnicodeBlock block ...
1
vote
2answers
45 views

Filtering characters missing from the user’s font in Java

I want to build a somewhat simple table with Java (as an exercise) to check for the existence of legal printable Unicode code point in the end-user’s font. Because some fonts cannot print valid code ...