File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -36,17 +36,11 @@ javac org\json\*.java
3636jar cf json-java.jar org/json/*.class
3737````
3838
39- * Compile a program that uses the jar (see below example code)*
39+ * Compile a program that uses the jar (see example code below )*
4040````
4141javac -cp .;json-java.jar Test.java
4242````
43-
44- * Excecute the Test file*
45- ````
46- java -cp .;json-java.jar Test
47- ````
48-
49-
43+
5044* Test file contents*
5145
5246````
@@ -59,6 +53,11 @@ public class Test {
5953}
6054````
6155
56+ * Excecute the Test file*
57+ ````
58+ java -cp .;json-java.jar Test
59+ ````
60+
6261* Expected output*
6362
6463````
@@ -69,7 +68,7 @@ public class Test {
6968* You can only run the unit tests with Maven or Gradlew.*
7069
7170
72- #Files#
71+ # Files
7372
7473** JSONObject.java** : The ` JSONObject ` can parse text from a ` String ` or a ` JSONTokener `
7574to produce a map-like object. The object provides methods for manipulating its
You can’t perform that action at this time.
0 commit comments