Tagged Questions

6
votes
2answers
4k 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
votes
3answers
51 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 ...