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 ...
3
votes
2answers
2k views
How to detect and replace non-printable characters in a string using Java?
For instance I have a string like this : abc123[*]xyz[#]098[~]f9e
[*] , [#] and [~] represents 3 different non-printable characters.
How can I replace them with "X" in Java ?
Frank
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 ...
-1
votes
3answers
77 views
serialization ArrayList Java
I want to serialize the Arrylist of type ArrayList<Class>
and the class contains two arrylist of primitive type
public class Keyword {
private long id;
private long wid;
private ...