sadece bunu içe aktarman gerekiyor
import org.json.JSONObject;
constructing the String that you want to send
JSONObject param=new JSONObject();
JSONObject post=new JSONObject();
im iki nesne kullanarak çünkü başka bir jsonObject olabilir
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");
sonra yazı json böyle bir başka içine koymak
param.put("post",post);
bu bir istekte bulunmak için kullandığım yöntem
makeRequest(param.toString());
public JSONObject makeRequest(String param)
{
try
{
bağlantı kurma
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();
çıkış akışını ayarlama
dataOutputStream = new DataOutputStream(connection.getOutputStream());
logcat'te ne gönderdiğimi görmek için bunu kullanıyorum
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;
burada dize oluşturulur
while ((line = reader.readLine()) != null)
{
result.append(line);
}
Bu günlüğü yanıtta ne olduğunu görmek için kullanıyorum
Log.d("INPUTSTREAM: ",result.toString());
sunucu yanıtını içeren Dize ile bir json örneği oluşturma
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;
}