Advertisement
Guest User

Untitled

a guest
Nov 4th, 2015
102
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.88 KB | None | 0 0
  1. {
  2. "contacts": [
  3. {
  4. "id": "c200",
  5. "name": "Ravi Tamada",
  6. "email": "ravi@gmail.com",
  7. "address": "xx-xx-xxxx,x - street, x - country",
  8. "gender" : "male",
  9. "phone": {
  10. "mobile": "+91 0000000000",
  11. "home": "00 000000",
  12. "office": "00 000000"
  13. }
  14. },
  15. {
  16. "id": "c201",
  17. "name": "Johnny Depp",
  18. "email": "johnny_depp@gmail.com",
  19. "address": "xx-xx-xxxx,x - street, x - country",
  20. "gender" : "male",
  21. "phone": {
  22. "mobile": "+91 0000000000",
  23. "home": "00 000000",
  24. "office": "00 000000"
  25. }
  26. }
  27.  
  28. ]
  29. }
  30.  
  31.  
  32.  
  33. String s = "{"+ "\"contacts\": [" +
  34. "{" +
  35. "\"id\": \"c200\"," +
  36. "\"name\": \"Ravi Tamada\"," +
  37. "\"email\": \"ravi@gmail.com\"," +
  38. "\"address\": \"xx-xx-xxxx,x - street, x - country\"," +
  39. "\"gender\" : \"male\"," +
  40. "\"phone\": {" +
  41. " \"mobile\": \"+91 0000000000\"," +
  42. " \"home\": \"00 000000\"," +
  43. " \"office\": \"00 000000\"" +
  44. "}" +
  45. "}," +
  46. "{" +
  47. "\"id\": \"c201\"," +
  48. "\"name\": \"Johnny Depp\"," +
  49. "\"email\": \"johnny_depp@gmail.com\"," +
  50. "\"address\": \"xx-xx-xxxx,x - street, x - country\"," +
  51. "\"gender\" : \"male\"," +
  52. "\"phone\": {" +
  53. " \"mobile\": \"+91 0000000000\"," +
  54. " \"home\": \"00 000000\"," +
  55. " \"office\": \"00 000000\"" +
  56. "}" +
  57. "}" +
  58. "" +
  59. " ]" +
  60. "}";
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement