써먹는 웹개발
[Gradle] json 적용 실패 사례와 성공 사례 (+질문) 본문
728x90
반응형
20211202
Question 1. json.toJSONString() 이 안되는 이유가 알고싶은데 아시는 분은 댓글 부탁드립니다.
ex) JSONObject json = new JSONObject(exam);
json.toJSONString(); // 에러발생
※ gradle에는 다음 2줄 추가 :
implementation 'org.json:json:20190722'
implementation 'com.googlecode.json-simple:json-simple:1.1.1'
적용한 소스는 build.gradle > dependencies 하위로 동일합니다.
1. json 실패한 사례
compile group: 'org.json', name: 'json', version: '20180813' |
2. json 성공한 사례
- jsonObject 만 되는 것
- jsonParse 까지되는 것
implementation 'com.googlecode.json-simple:json-simple:1.1.1' |
소스 입력 및 저장 후에 Gradle > Reload All Gradle Projects
728x90
반응형
'Server > Gradle & Maven' 카테고리의 다른 글
[Gradle] Maven보다 Gradle을 쓰는 이유 (0) | 2021.12.03 |
---|---|
[Gradle] distributionUrl 쓰는 이유 (0) | 2021.08.28 |
[gradle] 오프라인 상태에서 no cached version available for offline mode 문제해결 (0) | 2021.08.27 |
[Gradle] build.gradle > dependencies에 정확한 주소를 입력했는데 다운로드가 안되었을때 해결한 방법 (0) | 2021.08.19 |
[Gradle] 기존에 파일이 있으면 다운로드 되지 않을때 해결방법 (0) | 2021.08.17 |
Comments