tabs in drawString

I have a string that looks like this "\t\tsome text" I am trying to use Graphics.drawString to print this string onto a JLabel. But I get the "I don't know what this character is" box instead of a tab. Is there any way around this, or is that just the way drawString works?
[288 byte] By [shaneroy] at [2007-9-26 2:10:45]
# 1

Looks like that's the way drawString works. But to "get around" it, you will have to decide what you want the tabs to do and do that yourself. Presumably you want a tab character to be replaced by some amount of whitespace, but how much? Do you want a tab to be the same as e.g. 4 spaces? Or do you want it to put in enough whitespace to reach the next tab position, whatever that might be? The programming's up to you.

DrClap at 2007-6-29 9:02:02 > top of Java-index,Archived Forums,Java Programming...