Reputation:
I am reading data from a .csv file and displaying it. When I encounter the micro character (µ) some special symbols are displayed instead. How can I display the micro character?
Upvotes: 0
Views: 690
Reputation: 22775
class Scr extends MainScreen
{
public Scr() {
LabelField label = new LabelField();
String fontName = label.getFont().getFontFamily().getName();
String text = "Font name: "+fontName+" Symbol: µ";
label.setText(text);
add(label);
}
}
screen http://img207.imageshack.us/img207/9606/screenwx.jpg
Can't reproduce on RIM OS 4.5 Curve 8300, font "BBAlpha Sans".
Upvotes: 2