2011-11-02 4 views
10

J'ai une structure JSON comme indiqué ci-dessous. Comment puis-je créer cette structure de tableau par programme?Comment créer un tableau JSON en Java

JSON srtucture:

{ 
"Employee": 
    [ 
     { 
     "EmP325235": 
      { 
      "Name":"Rekha_S", 
      "firstName":"Rekha", 
      "phoneWork":"788908909", 
      "lastName":"S", 
      "namePrefix":"Miss", 
      "phoneMobile":"3347687878", 
      "phoneHome":"5768900909", 
      "Email":"" 
      }, 
     "Em252555": 
      { 
      "Name":"Roopa_N", 
      "firstName":"Roopa", 
      "phoneWork":"0471245367", 
      "lastName":"N", 
      "namePrefix":"", 
      "phoneMobile":"", 
      "phoneHome":"", 
      "Email":"" 
     } 
     } 
    ], 
"User_Details": 
    { 
     "USER_ID":"7890", 
     "Number":"8585858585", 
     "Password":"Passwordsgs" 
    } 
} 
+0

Demandez-vous des recommandations pour une bibliothèque JSON pour Java? Il ya beaucoup à http://json.org –

Répondre

0

Xstream offre un moyen très pratique pour transformer JSON JAVA et le dos. Son annotation est basée et fait le travail de conversion plutôt bien. Vérification XStream

Questions connexes