bạn chỉ cần nhập cái này
import org.json.JSONObject;
constructing the String that you want to send
JSONObject param=new JSONObject();
JSONObject post=new JSONObject();
tôi đang sử dụng hai đối tượng vì bạn có thể có một jsonObject trong một đối tượng khác
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");
sau đó tôi đặt bài đăng json bên trong khác
param.put("post",post);
đây là phương pháp mà tôi sử dụng để đưa ra yêu cầu
makeRequest(param.toString());
public JSONObject makeRequest(String param)
{
try
{
thiết lập kết nối
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();
thiết lập đầu ra
dataOutputStream = new DataOutputStream(connection.getOutputStream());
tôi sử dụng điều này để xem trong logcat những gì tôi đang gửi
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;
ở đây chuỗi được xây dựng
while ((line = reader.readLine()) != null)
{
result.append(line);
}
tôi sử dụng nhật ký này để xem những gì nó đến trong phản hồi
Log.d("INPUTSTREAM: ",result.toString());
kích hoạt một json với Chuỗi chứa phản hồi của máy chủ
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;
}