반응형
Notice
Recent Posts
Recent Comments
Link
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | |||||
3 | 4 | 5 | 6 | 7 | 8 | 9 |
10 | 11 | 12 | 13 | 14 | 15 | 16 |
17 | 18 | 19 | 20 | 21 | 22 | 23 |
24 | 25 | 26 | 27 | 28 | 29 | 30 |
Tags
- spring3
- rocky9
- jenkins
- spring
- security
- MariaDB
- submit
- config
- Next.js
- centos7
- NextJS
- Maven
- docker
- MSsql
- javascript
- Java
- git
- console
- mysql
- jquery
- mybatis
- yona
- popup
- post
- nodejs
- SpringBoot
- Eclipse
- ajax
- node.js
- PM2
Archives
- Today
- Total
ふたりで
response Body에 담긴 Json 문자 파싱 본문
728x90
반응형
SMALL
- dependency
<!-- https://mvnrepository.com/artifact/com.googlecode.json-simple/json-simple -->
<dependency>
<groupId>com.googlecode.json-simple</groupId>
<artifactId>json-simple</artifactId>
<version>1.1.1</version>
</dependency>
- 구현 Class
public Map<String, Object> getAPICall(int param) throws Exception {
Map <String, Object> resultMap = new HashMap<String,Object>();
String reqStr = uRLUtil.requestGET("http://aaa.aaa.kr/GETjson", param);
/*
reqStr에 담겨오는 jsonString
{ "code": "success",
"message": "",
"data": {
"a_unit": "2000.9",
"b_unit": "3000.0"
}
}
*/
//jsonString 파싱하여 jsonObject에 담는다.
JSONParser parser = new JSONParser();
Object objP = parser.parse( reqStr );
JSONObject jsonObjP = (JSONObject) objP;//root
Object objC =jsonObjP.get("data");
JSONObject jsonObjC = (JSONObject) objC;//child
//jsonObject에 담긴걸 Map에 담아 리턴.
resultMap.put("code", jsonObjP.get("code"));
resultMap.put("message", jsonObjP.get("message"));
resultMap.put("sms_unit", jsonObjC.get("a_unit"));
resultMap.put("lms_unit", jsonObjC.get("b_unit"));
return resultMap;
}
728x90
반응형
LIST
'Spring' 카테고리의 다른 글
springboot2.3.X SchedulerConfig (0) | 2020.12.21 |
---|---|
SpringBoot+Security ajax Unauthorized request filter (0) | 2020.12.18 |
springboot2+mybatis+maven 다중(멀티) datasource 설정. (0) | 2020.12.11 |
springboot @Scheduled 사용 해 보기 (0) | 2020.12.01 |
jasypt 를 이용한 properties DB정보 암호화 (0) | 2020.07.22 |
Comments