Cómo ejecutar un archivo JSON en Windows

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):

  1. { id: 1 
  2. , name: "Seth Fulmer" 
  3. , titleId: 1 
  4. , subordinates: [ { id: 2 
  5. , name: "Steve Rhodes" 
  6. , titleid: 2 
  7. , subordinates: [] 
  8. }] 
  9. }
  10. Por favor, no te preocupes

and a related Java object that would be created to hold the data:

  1. public class Employee 
  2. private int miId; 
  3. private String msName; 
  4. private Title mObjTitle; 
  5. private List mLstEmployees; 
  6.  
  7. // 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.