Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

Possible Duplicate:
How to remove high-ASCII characters from string like ®, ©, ™ in Java

Hi All,

How to remove rectangle like unicode characters in java string.

Thanks,

Chaitu

share|improve this question
2  
The fault, dear user, lies not in the characters, but in ourselves if we are naive with them. (He said, mangling Shakespeare.) Also: joelonsoftware.com/articles/Unicode.html – T.J. Crowder May 23 '11 at 11:18
@Pushpendra :Thanks,Your soultion working. – user569125 May 23 '11 at 12:04
Your welcome – Pushpendra May 23 '11 at 12:57

marked as duplicate by Bill the Lizard May 23 '11 at 12:41

This question has been asked before and already has an answer. If those answers do not fully address your question, please ask a new question.

3 Answers

When your characters are rendered as rectangles, than that usually means that your system doesn't have the necessary fonts to display.

Since the installed fonts can vary from machine to machine, it's hard to define what you mean by "rectangle like unicode characters".

If your code is running on the machine that does the display (i.e. you're not just rendering HTML, for example), then you might be able to use Font.canDisplay() or Font.canDisplayUpTo() to check if a given char/String can be displayed.

share|improve this answer

How to remove rectangle like unicode characters in java string.

They aren't bad character !. They don't have proper font to be displayed just.

Still if you want you can only accept characters from specified range of your choice . Or its better to provide font

share|improve this answer
@Jigar Joshi: What font i have to load to display these characters.,or is possible to delete these characters. – user569125 May 23 '11 at 11:16
Better to go for right font. selection of font again depends on the character range. but Arial_Unicode_MS supports all character. – Jigar Joshi May 23 '11 at 11:17
@Jigar: it supports all characters... for some values of "all" ;-) – Joachim Sauer May 23 '11 at 11:27
2  
@Jigar: Unicode has a huge range of characters and it's growing. Many of those code points are of some obscure scripts that are only historically relevant or written by only a few individuals. No single font supports all of them. Examples: U+133FA EGYPTIAN HIEROGLYPH Z015, U+1207 ETHIOPIC SYLLABLE HOA, U+10800 CYPRIOT SYLLABLE A, ... – Joachim Sauer May 23 '11 at 11:36
2  
@Jigar: to be more specific: "It covers all code points containing non-control characters in Unicode 2.1.". We're currently in Unicode 6.0. Between those versions 70497 new characters were introduced. – Joachim Sauer May 23 '11 at 11:39
show 3 more comments

I would start by looking at the Apache Commons Lang StringUtils.escapeHtml() function code (JavaDoc here: http://commons.apache.org/lang/apidocs/index.html) and see how they do the escaping -- and instead of escaping the char just remove it.

share|improve this answer
That won't help, if the problem lies in a missing font (as I strongly suspect). – Joachim Sauer May 23 '11 at 11:41
I beg to differ -- regardless of the font missing (and I tend to agree here with you!), if you eliminate those characters (which is what he is trying to do) then you won't need to print them and as such there won't be any "empty squares" -- wouldn't you say? – Liv May 23 '11 at 12:56
That's what I get for not reading the answer fully. Of course, you're right (the downvote is not mine, btw). – Joachim Sauer May 23 '11 at 13:00
that's ok -- i don't care for the voting as I care for correct answers :) – Liv May 23 '11 at 14:04

Not the answer you're looking for? Browse other questions tagged or ask your own question.