SM520 Tire size
2010-12-28 11:04:48
연구실
P205 65R 15 92H
살까 말까..
▼ more
P205 65R 15 92H
살까 말까..
1. otherme 만 주면 정확하다. 하지만 잘 못찾는다.
2. 한국어 문제는 스스로 해결~!
<inherits name='com.google.gwt.widgetideas.WidgetIdeas' />
<inherits name='com.google.gwt.libideas.LibIdeas' />
hex String to one character..
public static char getCharFromHex(String str){
if(str.length()!=4){
return '\0';
}
int intValue = Integer.parseInt(str, 16);
return (char)intValue;
}