프로젝트

외부 api 적용, json 파싱

chaechaepower 2024. 1. 7. 17:11

 

공공데이터 포털에서 샘플 자바 코드 복사 후 인증키 수정, 응답 형식을 json으로 수정.

 

 

 

json 파싱 도구(json-simple, JSONView)

 


1. json-simple 페이지(https://code.google.com/archive/p/json-simple/downloads) 접속 후 json-simple.jar파일 다운로드 후

인텔리제이에 적용(외부 라이브러리) 

https://growingarchive.tistory.com/197

https://loosie.tistory.com/467

(file structure> libaries에서 + 눌러야함!)

 

2. JSONView 크롬 확장 프로그램 설치하면 브라우저에서 json 데이터를 가독성있게 볼 수 있음(구조 파악 가능)

 

 

 

 

 

json 파싱 방법

 


https://changheesjunk.tistory.com/22

https://studyingazae.tistory.com/196

 

 

 

응답받은 json 구조1
응답받은 json 구조2

 

데이터 파싱하여 List<Map<String,Object>>에 저장.

https://edu-coding.tistory.com/32