Return this dictionary as a String in JSON format.
()
| 787 | * Return this dictionary as a String in JSON format. |
| 788 | */ |
| 789 | public String toJSON() { |
| 790 | StringList items = new StringList(); |
| 791 | for (int i = 0; i < count; i++) { |
| 792 | items.append(JSONObject.quote(keys[i])+ ": " + values[i]); |
| 793 | } |
| 794 | return "{ " + items.join(", ") + " }"; |
| 795 | } |
| 796 | |
| 797 | |
| 798 | @Override |