BAEL 1269 Intro to JSON-JAVA (#3493)

* Final commit

* Made changes as per last review

* Moved from core-java to json module
This commit is contained in:
ramansahasi
2018-02-01 15:27:48 +05:30
committed by Grzegorz Piwowarek
parent 3e4b6df194
commit 15f18bbb83
14 changed files with 498 additions and 0 deletions
@@ -0,0 +1,13 @@
package com.baeldung.jsonjava;
import org.json.JSONTokener;
public class JSONTokenerDemo {
public static void main(String[] args) {
JSONTokener jt = new JSONTokener("Sample String");
while(jt.more()) {
System.out.println(jt.next());
}
}
}