private String utfToString(byte[] data) {
str = new String(data, "utf-8");
} catch (UnsupportedEncodingException e) {
}
String str = null;
try {str = new String(data, "utf-8");
} catch (UnsupportedEncodingException e) {
}
return str;
}