반응형
OKHttp 응답값 사용하기
try {
Response response = client.newCall(req).execute();
if(response.isSuccessful()) {
String result = response.body().string();
// result = "{"과일":"딸기","동물":"고양이"}";
JSONParser parser = new JSONParser();
JSONObject json = (JSONObject) parser.parse(result);
}
} catch (IOException e) {
e.printStackTrace();
}
response를 문자열로 변환하고 문자열을 JSONObject로 변환했습니다.
반응형
'TIL' 카테고리의 다른 글
yarn install, error Command failed. Exit code: 128 (0) | 2023.09.07 |
---|
댓글