diff options
Diffstat (limited to 'src')
-rw-r--r-- | src/com/juick/json/Users.java | 31 |
1 files changed, 31 insertions, 0 deletions
diff --git a/src/com/juick/json/Users.java b/src/com/juick/json/Users.java new file mode 100644 index 00000000..eda89ccb --- /dev/null +++ b/src/com/juick/json/Users.java @@ -0,0 +1,31 @@ +/* + * To change this template, choose Tools | Templates + * and open the template in the editor. + */ +package com.juick.json; + +import java.util.ArrayList; +import java.util.Iterator; + +/** + * + * @author ugnich + */ +public class Users { + + public static String arrayToString(ArrayList<com.juick.User> users) { + String json = "["; + + Iterator<com.juick.User> i = users.iterator(); + while (i.hasNext()) { + com.juick.User u = i.next(); + if (json.length() > 1) { + json += ","; + } + json += "{\"uid\":" + u.UID + ",\"uname\":\"" + u.UName + "\"}"; + } + + json += "]"; + return json; + } +} |