fix bug
This commit is contained in:
@@ -4,6 +4,13 @@ import org.json.JSONObject;
|
||||
|
||||
public class JsonUtil {
|
||||
public static String toString(Object o) {
|
||||
if (o instanceof String) {
|
||||
StringBuffer buffer = new StringBuffer();
|
||||
buffer.append("\"");
|
||||
buffer.append(o);
|
||||
buffer.append("\"");
|
||||
return buffer.toString();
|
||||
}
|
||||
Object obj = JSONObject.wrap(o);
|
||||
if (null != obj) {
|
||||
return obj.toString();
|
||||
|
||||
Reference in New Issue
Block a user