이걸 가져 오기만하면됩니다
import org.json.JSONObject;
constructing the String that you want to send
JSONObject param=new JSONObject();
JSONObject post=new JSONObject();
다른 객체 내에 jsonObject를 가질 수 있기 때문에 두 객체를 사용하는 메신저
post.put("username(here i write the key)","someusername"(here i put the value);
post.put("message","this is a sweet message");
post.put("image","http://localhost/someimage.jpg");
post.put("time": "present time");
그런 다음 게시물 json을 다른 것과 같이 넣습니다.
param.put("post",post);
이것은 내가 요청을하는 데 사용하는 방법입니다
makeRequest(param.toString());
public JSONObject makeRequest(String param)
{
try
{
연결 설정
urlConnection = new URL("your url");
connection = (HttpURLConnection) urlConnection.openConnection();
connection.setDoOutput(true);
connection.setRequestMethod("POST");
connection.setRequestProperty("Content-type", "application/json;charset=UTF-8");
connection.setReadTimeout(60000);
connection.setConnectTimeout(60000);
connection.connect();
출력 스트림 설정
dataOutputStream = new DataOutputStream(connection.getOutputStream());
나는 이것을 사용하여 logcat에서 볼 수 있습니다.
Log.d("OUTPUT STREAM " ,param);
dataOutputStream.writeBytes(param);
dataOutputStream.flush();
dataOutputStream.close();
InputStream in = new BufferedInputStream(connection.getInputStream());
BufferedReader reader = new BufferedReader(new InputStreamReader(in));
result = new StringBuilder();
String line;
여기에 문자열이 구성됩니다
while ((line = reader.readLine()) != null)
{
result.append(line);
}
이 로그를 사용하여 응답에서 어떤 내용이 나오는지 확인합니다.
Log.d("INPUTSTREAM: ",result.toString());
서버 응답을 포함하는 문자열로 json 인스 턴싱
jResponse=new JSONObject(result.toString());
}
catch (IOException e) {
e.printStackTrace();
return jResponse=null;
} catch (JSONException e)
{
e.printStackTrace();
return jResponse=null;
}
connection.disconnect();
return jResponse;
}