Pregunta: ¿Cómo se ejecuta un archivo JSON en Windows?
No se "ejecuta" JSON - No es ejecutable como un archivo EXE, COM, MSI, o incluso BAT. Es puramente para serializar datos y, dependiendo del lenguaje, podría haber muchas bibliotecas que podrían utilizarse para des-serializar o leer y analizar los datos.
Esencialmente JSON es una serie de pares clave/valor. Un valor puede ser un valor simple como 12345, verdadero/falso, 3,14159265, o "Hola Mundo" - o podría ser una matriz o de otra manera colección de pares clave/valor adicionales. Below is a possible example of a JSON file(I didn’t run this through a JSON linter for accuracy):
- { id: 1
- , name: "Seth Fulmer"
- , titleId: 1
- , subordinates: [ { id: 2
- , name: "Steve Rhodes"
- , titleid: 2
- , subordinates: []
- }]
- }
- Por favor, no te preocupes.
and a related Java object that would be created to hold the data:
- public class Employee
- {
- private int miId;
- private String msName;
- private Title mObjTitle;
- private List mLstEmployees;
- // constructors, getters, setters, etc.
- }
Now I used TitleId instead of defining each title out which might take some creative programming like for the Title class having a constructor that takes an integer for the id but that’s a minor factor. There are many libraries like Jackson and I believe another is called GSON which will auto-serialize and deserialize objects in certain situations.
But you can’t execute or run JSON - just read/parse or write/serialize it.