Anda hanya perlu mengimpor ini
import org.json.JSONObject;
constructing the String that you want to send
JSONObject param=new JSONObject();
JSONObject post=new JSONObject();
im menggunakan dua objek karena Anda dapat memiliki jsonObject dalam yang lain
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");
kemudian saya meletakkan posting json di dalam yang lain seperti ini
param.put("post",post);
ini adalah metode yang saya gunakan untuk membuat permintaan
makeRequest(param.toString());
public JSONObject makeRequest(String param)
{
try
{
mengatur koneksi
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();
mengatur arus keluaran
dataOutputStream = new DataOutputStream(connection.getOutputStream())
saya menggunakan ini untuk melihat di logcat apa yang saya kirim
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;
di sini tali itu dibuat
while ((line = reader.readLine()) != null)
{
result.append(line);
}
saya menggunakan log ini untuk melihat apa yang terjadi dalam respons
Log.d("INPUTSTREAM: ",result.toString());
instancing a json dengan String yang berisi respons server
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;
}