SM520 Tire size
2010-12-28 11:04:48

P205 65R 15 92H

살까 말까..

▼ more
Google Social Graph Api
2010-12-28 10:26:25

1. otherme 만 주면 정확하다. 하지만 잘 못찾는다.

2. 한국어 문제는 스스로 해결~!

▼ more
GWT incubator xml setting
2010-12-28 09:58:08

<inherits name='com.google.gwt.widgetideas.WidgetIdeas' />

<inherits name='com.google.gwt.libideas.LibIdeas' />

▼ more
하고나면 쓸데없는 보람이 생기는.. 인코딩 문제..
2010-12-27 22:48:11

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;

}

▼ more