Translate

2018년 7월 23일 월요일

[Java] String to JSON 라이브러리 정리


Laptop 운영체제Windows 10 Home 64bit 개발프로그램Eclipse Oxygen (4.7) 예제 String: String jsonString = "{" + "'name' : 'Ronaldo', " + "'age' : 25, " + "'id' : 121.5, " + "'lastScores' : [ 2, 1, 3, 5, 0, 0, 1, 1 ]" + "}"; 1. json Path https://mvnrepository.com/artifact/com.jayway.jsonpath/json-path import...