From 61801c623e8fe51827b1e03a5ffebcebbb708994 Mon Sep 17 00:00:00 2001
From: TheCommandBlock <95651685+InACommandBlock@users.noreply.github.com>
Date: Thu, 6 Oct 2022 00:48:34 +0200
Subject: [PATCH 1/2] Minor Adjustments Example.md
Added syntax highlighting, standardised indentation
---
Examples.md | 560 ++++++++++++++++++++++++++--------------------------
1 file changed, 280 insertions(+), 280 deletions(-)
diff --git a/Examples.md b/Examples.md
index 8f28461e5..2671d1d8a 100644
--- a/Examples.md
+++ b/Examples.md
@@ -1,7 +1,7 @@
Examples
Imports used in the examples:
-```
+```java
import java.util.HashMap;
import java.util.Map;
import java.util.Properties;
@@ -14,208 +14,208 @@ import java.util.Properties;
Using JSONArray
-```
- private static void JSONExampleArray1() {
- //We create a JSONObject from a String containing an array using JSONArray
- //Firstly, we declare an Array in a String
-
- String arrayStr =
- "["+"true,"+"false,"+ "\"true\","+ "\"false\","+"\"hello\","+"23.45e-4,"+
- "\"23.45\","+"42,"+"\"43\","+"["+"\"world\""+"],"+
- "{"+
- "\"key1\":\"value1\","+
- "\"key2\":\"value2\","+
- "\"key3\":\"value3\","+
- "\"key4\":\"value4\""+
- "},"+
- "0,"+"\"-1\""+
- "]";
-
- //Then, we initializate the JSONArray thanks to its constructor
-
- JSONArray array = new JSONArray(arrayStr);
- System.out.println("Values array: "+ array);
-
- //We convert that array into a JSONObject, but first, we need the labels, so we need another JSONArray with the labels.
- //Here we will use an auxiliary function to get one for the example.
-
- JSONArray list = listNumberArray(array.length());
- System.out.println("Label Array: "+ list.toString());
- //Now, we construct the JSONObject using both the value array and the label array.
- JSONObject object = array.toJSONObject(list);
- System.out.println("Final JSONOBject: " + object);
- }
+```java
+private static void JSONExampleArray1() {
+ //We create a JSONObject from a String containing an array using JSONArray
+ //Firstly, we declare an Array in a String
+
+ String arrayStr =
+ "["+"true,"+"false,"+ "\"true\","+ "\"false\","+"\"hello\","+"23.45e-4,"+
+ "\"23.45\","+"42,"+"\"43\","+"["+"\"world\""+"],"+
+ "{"+
+ "\"key1\":\"value1\","+
+ "\"key2\":\"value2\","+
+ "\"key3\":\"value3\","+
+ "\"key4\":\"value4\""+
+ "},"+
+ "0,"+"\"-1\""+
+ "]";
+
+ //Then, we initializate the JSONArray thanks to its constructor
+
+ JSONArray array = new JSONArray(arrayStr);
+ System.out.println("Values array: "+ array);
+
+ //We convert that array into a JSONObject, but first, we need the labels, so we need another JSONArray with the labels.
+ //Here we will use an auxiliary function to get one for the example.
+
+ JSONArray list = listNumberArray(array.length());
+ System.out.println("Label Array: "+ list.toString());
+ //Now, we construct the JSONObject using both the value array and the label array.
+ JSONObject object = array.toJSONObject(list);
+ System.out.println("Final JSONOBject: " + object);
+}
- //This method creates an JSONArray of labels in which those are generated by their positions
+//This method creates an JSONArray of labels in which those are generated by their positions
- private static JSONArray listNumberArray(int max){
- JSONArray res = new JSONArray();
- for (int i=0; iUsing JSONStringer
-```
- private static void JSONExampleStringer() {
+```java
+private static void JSONExampleStringer() {
- //We initializate the JSONStringer
+ //We initializate the JSONStringer
- JSONStringer jsonStringer = new JSONStringer();
+ JSONStringer jsonStringer = new JSONStringer();
- //Now we start the process of adding elements with .object()
+ //Now we start the process of adding elements with .object()
- jsonStringer.object();
+ jsonStringer.object();
- //We can now add elements as keys and values with .values () and .key()
+ //We can now add elements as keys and values with .values () and .key()
- jsonStringer.key("trueValue").value(true);
- jsonStringer.key("falseValue").value(false);
- jsonStringer.key("nullValue").value(null);
- jsonStringer.key("stringValue").value("hello world!");
- jsonStringer.key("complexStringValue").value("h\be\tllo w\u1234orld!");
- jsonStringer.key("intValue").value(42);
- jsonStringer.key("doubleValue").value(-23.45e67);
+ jsonStringer.key("trueValue").value(true);
+ jsonStringer.key("falseValue").value(false);
+ jsonStringer.key("nullValue").value(null);
+ jsonStringer.key("stringValue").value("hello world!");
+ jsonStringer.key("complexStringValue").value("h\be\tllo w\u1234orld!");
+ jsonStringer.key("intValue").value(42);
+ jsonStringer.key("doubleValue").value(-23.45e67);
- //We end this prcedure with .ednObject
+ //We end this prcedure with .ednObject
- jsonStringer.endObject();
+ jsonStringer.endObject();
- //Once we have a JSONStringer, we convert it to JSONObject generating a String and using JSONObject's contructor.
+ //Once we have a JSONStringer, we convert it to JSONObject generating a String and using JSONObject's contructor.
- String str = jsonStringer.toString();
- JSONObject jsonObject = new JSONObject(str);
-
- System.out.println("Final JSONOBject: " + jsonObject);
- }
+ String str = jsonStringer.toString();
+ JSONObject jsonObject = new JSONObject(str);
+
+ System.out.println("Final JSONOBject: " + jsonObject);
+}
```
Using JSONObject
-```
- private static void JSONExampleObject1() {
+```java
+private static void JSONExampleObject1() {
- //We can create a JSONObject from a String with the class builder
+ //We can create a JSONObject from a String with the class builder
- String string = "{\"0\":\"value\",\"1\":5,\"2\":-2.345E68,\"3\":true}";
- JSONObject example = new JSONObject(string);
- System.out.println("Final JSONObject: " + example);
-
- }
-```
+ String string = "{\"0\":\"value\",\"1\":5,\"2\":-2.345E68,\"3\":true}";
+ JSONObject example = new JSONObject(string);
+ System.out.println("Final JSONObject: " + example);
+
+}
```
- private static void JSONExampleObject2() {
+```java
+private static void JSONExampleObject2() {
- //We can also create a JSONObject directly without messing around with any of the other functions.
+ //We can also create a JSONObject directly without messing around with any of the other functions.
- JSONObject example = new JSONObject();
+ JSONObject example = new JSONObject();
- //Now we add the keys and values in a similar way as the Stringer method
- example.put("key", "value");
+ //Now we add the keys and values in a similar way as the Stringer method
+ example.put("key", "value");
- //As you can see, the first entry is the key and the second would be its associeted value.
+ //As you can see, the first entry is the key and the second would be its associeted value.
- example.put("key2", 5);
- example.put("key3", -23.45e67);
- example.put("trueValue", true);
+ example.put("key2", 5);
+ example.put("key3", -23.45e67);
+ example.put("trueValue", true);
- //We can't add null values thougth
+ //We can't add null values thougth
- //example.put("nullValue", null); //This is not possible
-
- System.out.println("Final JSONOBject: " + example);
- }
-```
+ //example.put("nullValue", null); //This is not possible
+
+ System.out.println("Final JSONOBject: " + example);
+}
```
- private static void JSONExampleObject3() {
+```java
+private static void JSONExampleObject3() {
- //We can also create a JSONObject with a Java Map
- //YoU will need a Map whose keys are Strings. The values can be whatever you want
+ //We can also create a JSONObject with a Java Map
+ //YoU will need a Map whose keys are Strings. The values can be whatever you want
- Map map = new HashMap();
-
- map.put("key1", 1.0);
- map.put("key2", -23.45e67);
-
- //We create the JSONObject with the map with its class builder
+ Map map = new HashMap();
- JSONObject example = new JSONObject(map);
- System.out.println("Final JSONOBject: " + example);
- }
+ map.put("key1", 1.0);
+ map.put("key2", -23.45e67);
+
+ //We create the JSONObject with the map with its class builder
+
+ JSONObject example = new JSONObject(map);
+ System.out.println("Final JSONOBject: " + example);
+}
```
Using JSONWriter
-```
- private static void JSONExamplWriter() {
-
- //This method works in a very similar way to Object and Stringer in the construction of the JSON.
- //The difference is that it needs a Java object called "Appendable" like StringBuilder
-
- StringBuilder write = new StringBuilder();
- JSONWriter jsonWriter = new JSONWriter(write);
-
- //We behave now the same way as Stringer
-
- jsonWriter.object();
-
- jsonWriter.key("trueValue").value(true);
- jsonWriter.key("falseValue").value(false);
- jsonWriter.key("nullValue").value(null);
- jsonWriter.key("stringValue").value("hello world!");
- jsonWriter.key("complexStringValue").value("h\be\tllo w\u1234orld!");
- jsonWriter.key("intValue").value(42);
- jsonWriter.key("doubleValue").value(-23.45e67);
-
- jsonWriter.endObject();
-
- //The resoult should be in the "write" object
-
- System.out.println("JSON: " + write.toString());
-
- //The difference is that we don't get a JSONObject in this one.
-
-
- }
+```java
+private static void JSONExamplWriter() {
+
+ //This method works in a very similar way to Object and Stringer in the construction of the JSON.
+ //The difference is that it needs a Java object called "Appendable" like StringBuilder
+
+ StringBuilder write = new StringBuilder();
+ JSONWriter jsonWriter = new JSONWriter(write);
+
+ //We behave now the same way as Stringer
+
+ jsonWriter.object();
+
+ jsonWriter.key("trueValue").value(true);
+ jsonWriter.key("falseValue").value(false);
+ jsonWriter.key("nullValue").value(null);
+ jsonWriter.key("stringValue").value("hello world!");
+ jsonWriter.key("complexStringValue").value("h\be\tllo w\u1234orld!");
+ jsonWriter.key("intValue").value(42);
+ jsonWriter.key("doubleValue").value(-23.45e67);
+
+ jsonWriter.endObject();
+
+ //The resoult should be in the "write" object
+
+ System.out.println("JSON: " + write.toString());
+
+ //The difference is that we don't get a JSONObject in this one.
+
+
+}
```
-```
- private static void JSONExampleTokener() {
+```java
+private static void JSONExampleTokener() {
- //A partir de una String podemos crear un JSONTokener, que lo podemos usar alternativamente para JSONArray,JSONObject
+ //A partir de una String podemos crear un JSONTokener, que lo podemos usar alternativamente para JSONArray,JSONObject
- String string = "this is not a valid JSON string";
- JSONTokener token = new JSONTokener(string);
-
- //Now you can use the token in JSONObject and Array the same way as a String
+ String string = "this is not a valid JSON string";
+ JSONTokener token = new JSONTokener(string);
- JSONObject object = new JSONObject(token);
- JSONArray array = new JSONArray(token);
-
- }
+ //Now you can use the token in JSONObject and Array the same way as a String
+
+ JSONObject object = new JSONObject(token);
+ JSONArray array = new JSONArray(token);
+
+}
```
Part 2: Conversion methods
We don't need to have a JSON document to work. This project also admits conversions from other type of files.
@@ -223,144 +223,144 @@ import java.util.Properties;
Extra: Conversion to JSONArray
-```
- private static void JSONObjectToArray() {
- //We start with a JSONObject
-
- String string = "{\"0\":\"value\",\"1\":5,\"2\":-2.345E68,\"3\":true}";
-
- JSONObject example = new JSONObject(string);
-
- //We need a list of key strings like the reverse operation
-
- JSONArray keyStrings = listNumberArray(example.length());
-
- //Then we convert to the Array using both elelements
-
- JSONArray array = example.toJSONArray(keyStrings);
-
- System.out.println("Final JSONArray: " + array);
- }
+```java
+private static void JSONObjectToArray() {
+ //We start with a JSONObject
+
+ String string = "{\"0\":\"value\",\"1\":5,\"2\":-2.345E68,\"3\":true}";
+
+ JSONObject example = new JSONObject(string);
+
+ //We need a list of key strings like the reverse operation
+
+ JSONArray keyStrings = listNumberArray(example.length());
+
+ //Then we convert to the Array using both elelements
+
+ JSONArray array = example.toJSONArray(keyStrings);
+
+ System.out.println("Final JSONArray: " + array);
+}
```
XML Conversions
-```
- private static void XMLToExampleConversion() {
+```java
+private static void XMLToExampleConversion() {
- //We start with a JSONObject
-
- String string = "{\"0\":\"value\",\"1\":5,\"2\":-2.345E68,\"3\":true}";
- JSONObject example = new JSONObject(string);
+ //We start with a JSONObject
- //We obtain a String with XML format with toString()
+ String string = "{\"0\":\"value\",\"1\":5,\"2\":-2.345E68,\"3\":true}";
+ JSONObject example = new JSONObject(string);
- String output = XML.toString(example);
- System.out.println("Final XML: " + output);
- }
+ //We obtain a String with XML format with toString()
+
+ String output = XML.toString(example);
+ System.out.println("Final XML: " + output);
+}
```
-```
- private static void XMLFromExampleConversion() {
+```java
+private static void XMLFromExampleConversion() {
- //We start with a string with the XML format
+ //We start with a string with the XML format
- String string = "<0>value0><1>51><2>-2.345E+682><3>true3>";
+ String string = "<0>value0><1>51><2>-2.345E+682><3>true3>";
- //We obtain a JSONObject with toJSONOBject()
+ //We obtain a JSONObject with toJSONOBject()
- JSONObject output = XML.toJSONObject(string);
-
- System.out.println("Final JSONObject: " + output);
- }
+ JSONObject output = XML.toJSONObject(string);
+
+ System.out.println("Final JSONObject: " + output);
+}
```
Cookie Conversions
-```
- private static void CookieToExampleConversion() {
+```java
+private static void CookieToExampleConversion() {
- //We start with a JSONObject
- //The JSONOBject needs to entries that gives the cookie a name and gives the field "name" a name too.
- //The Cokkie format doesn't support booleans
+ //We start with a JSONObject
+ //The JSONOBject needs to entries that gives the cookie a name and gives the field "name" a name too.
+ //The Cokkie format doesn't support booleans
- String string = "{\"name\":\"Cookie-Name\",\"value\":\"name\",\"1\":5,\"2\":-2.345E68,\"3\":'true'}";
- JSONObject example = new JSONObject(string);
-
- //We obtain a String with Cookie format with toString()
+ String string = "{\"name\":\"Cookie-Name\",\"value\":\"name\",\"1\":5,\"2\":-2.345E68,\"3\":'true'}";
+ JSONObject example = new JSONObject(string);
- String output = Cookie.toString(example);
- System.out.println("Final Cookie: " + output);
- }
-```
+ //We obtain a String with Cookie format with toString()
+
+ String output = Cookie.toString(example);
+ System.out.println("Final Cookie: " + output);
+}
```
- private static void CookieFromExampleConversion() {
+```java
+private static void CookieFromExampleConversion() {
- //We start with a string with the Cookie format
+ //We start with a string with the Cookie format
- String string = "Cookie-Name=name;1=5;2=-2.345E%2b68;3=true";
+ String string = "Cookie-Name=name;1=5;2=-2.345E%2b68;3=true";
- //We obtain a JSONObject with toJSONOBject()
+ //We obtain a JSONObject with toJSONOBject()
- JSONObject output = Cookie.toJSONObject(string);
- System.out.println("Final JSONObject: " + output);
- }
+ JSONObject output = Cookie.toJSONObject(string);
+ System.out.println("Final JSONObject: " + output);
+}
```
HTTP Conversions
-```
- private static void HTTPToExampleConversion() {
+```java
+private static void HTTPToExampleConversion() {
- //We start with a JSONObject
- //The JSONObject must have the minimun header for a HTTP request or header
+ //We start with a JSONObject
+ //The JSONObject must have the minimun header for a HTTP request or header
- String string = "{\"Method\":\"POST\",\"Request-URI\":'/',\"HTTP-Version\":'HTTP/1.1',\"Value1\":true,\"Value2\":2,\"Value3\":-2.345E68}";
+ String string = "{\"Method\":\"POST\",\"Request-URI\":'/',\"HTTP-Version\":'HTTP/1.1',\"Value1\":true,\"Value2\":2,\"Value3\":-2.345E68}";
- JSONObject example = new JSONObject(string);
+ JSONObject example = new JSONObject(string);
- //We obtain a String with HTTP format with toString()
+ //We obtain a String with HTTP format with toString()
- String output = HTTP.toString(example);
- System.out.println("Final HTTP: " + output);
- }
+ String output = HTTP.toString(example);
+ System.out.println("Final HTTP: " + output);
+}
```
-```
- private static void HTTPFromExampleConversion() {
+```java
+private static void HTTPFromExampleConversion() {
- //We start with a string with the HTTP format
+ //We start with a string with the HTTP format
- String string = "Final HTTP: POST '/' HTTP/1.1 Value3: -2.345E+68 Value1: true Value2: 2";
+ String string = "Final HTTP: POST '/' HTTP/1.1 Value3: -2.345E+68 Value1: true Value2: 2";
- //We obtain a JSONObject with toJSONOBject()
+ //We obtain a JSONObject with toJSONOBject()
- JSONObject output = HTTP.toJSONObject(string);
- System.out.println("Final JSONObject: " + output);
- }
+ JSONObject output = HTTP.toJSONObject(string);
+ System.out.println("Final JSONObject: " + output);
+}
```
CDL Conversions
-```
+```java
private static void CDLToExampleConversion() {
- //We start with some JSONObjects with the same values in the keys but different values in the "values"
+ //We start with some JSONObjects with the same values in the keys but different values in the "values"
+
+ String string = "{\"0\":\"value\",\"1\":5,\"2\":-2.345E68,\"3\":true}";
+ JSONObject example = new JSONObject(string);
- String string = "{\"0\":\"value\",\"1\":5,\"2\":-2.345E68,\"3\":true}";
- JSONObject example = new JSONObject(string);
-
- String string2 = "{\"0\":\"value2\",\"1\":6,\"2\":-8.345E68,\"3\":false}";
- JSONObject example2 = new JSONObject(string2);
-
- //We need now a JSONArray with those JSONObjects
+ String string2 = "{\"0\":\"value2\",\"1\":6,\"2\":-8.345E68,\"3\":false}";
+ JSONObject example2 = new JSONObject(string2);
- JSONArray array = new JSONArray();
- array.put(example);
- array.put(example2);
+ //We need now a JSONArray with those JSONObjects
- //We obtain a String with XML format with toString()
+ JSONArray array = new JSONArray();
+ array.put(example);
+ array.put(example2);
- String output = CDL.toString(array);
- System.out.println("Final CDL: \r\n" + output);
- }
-```
+ //We obtain a String with XML format with toString()
+
+ String output = CDL.toString(array);
+ System.out.println("Final CDL: \r\n" + output);
+}
```
+```java
private static void CDLFromExampleConversion() {
//We start wtih a String with the CDL format
@@ -368,7 +368,7 @@ private static void CDLFromExampleConversion() {
String string = "0,1,2,3\n"
+ "value,5,-2.345E+68,true\n"
+ "value2,6,-8.345E+68,false";
-
+
//We obtain a JSONArray with toJSONOBject()
JSONArray output = CDL.toJSONArray(string);
@@ -377,8 +377,8 @@ private static void CDLFromExampleConversion() {
```
Properties Conversions
-```
- private static Properties PropertyToExampleConversion() {
+```java
+private static Properties PropertyToExampleConversion() {
//We start with a JSONObject
@@ -391,43 +391,43 @@ private static void CDLFromExampleConversion() {
System.out.println("Final Properties: " + output);
return output;
- }
+}
```
-```
- private static void PropertyFromExampleConversion() {
+```java
+private static void PropertyFromExampleConversion() {
- //We start with a Properties object
+ //We start with a Properties object
- Properties input = PropertyToExampleConversion();
+ Properties input = PropertyToExampleConversion();
- //We obtain a JSONObject with toJSONOBject()
+ //We obtain a JSONObject with toJSONOBject()
- JSONObject output = Property.toJSONObject(input);
- System.out.println("Final JSONObject: " + output);
- }
+ JSONObject output = Property.toJSONObject(input);
+ System.out.println("Final JSONObject: " + output);
+}
```
List of all examples methods
-```
- public static void main(String[] args) {
- //JSONObjectToArray();
- //JSONExampleArray1();
- //JSONExampleArray2();
- //JSONExampleStringer();
- //JSONExampleObject1();
- //JSONExampleObject2();
- //JSONExampleObject3();
- //JSONExamplWriter();
- //XMLToExampleConversion();
- //XMLFromExampleConversion();
- //CookieToExampleConversion();
- //CookieFromExampleConversion();
- //HTTPToExampleConversion();
- //HTTPFromExampleConversion();
- //CDLToExampleConversion();
- //CDLFromExampleConversion();
- //PropertyToExampleConversion();
- //PropertyFromExampleConversion();
- }
+```java
+public static void main(String[] args) {
+ //JSONObjectToArray();
+ //JSONExampleArray1();
+ //JSONExampleArray2();
+ //JSONExampleStringer();
+ //JSONExampleObject1();
+ //JSONExampleObject2();
+ //JSONExampleObject3();
+ //JSONExamplWriter();
+ //XMLToExampleConversion();
+ //XMLFromExampleConversion();
+ //CookieToExampleConversion();
+ //CookieFromExampleConversion();
+ //HTTPToExampleConversion();
+ //HTTPFromExampleConversion();
+ //CDLToExampleConversion();
+ //CDLFromExampleConversion();
+ //PropertyToExampleConversion();
+ //PropertyFromExampleConversion();
+}
```
From 12411b7981e47a3541d1ec27694ca2bc0507a7ba Mon Sep 17 00:00:00 2001
From: TheCommandBlock <95651685+InACommandBlock@users.noreply.github.com>
Date: Thu, 6 Oct 2022 03:18:03 +0200
Subject: [PATCH 2/2] Update Examples.md
Co-authored-by: JAYSE <104235500+JayseMayne@users.noreply.github.com>
---
Examples.md | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/Examples.md b/Examples.md
index 2671d1d8a..fb010d5dc 100644
--- a/Examples.md
+++ b/Examples.md
@@ -406,7 +406,7 @@ private static void PropertyFromExampleConversion() {
System.out.println("Final JSONObject: " + output);
}
```
-List of all examples methods
+ List of all examples methods
```java
public static void main(String[] args) {