Sie müssen dies nur importieren
import org.json.JSONObject;
constructing the String that you want to send
JSONObject param=new JSONObject();
JSONObject post=new JSONObject();
Ich benutze zwei Objekte, weil Sie ein jsonObject in einem anderen haben können
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");
dann habe ich den post json so in einen anderen gesteckt
param.put("post",post);
Dies ist die Methode, die ich benutze, um eine Anfrage zu stellen
makeRequest(param.toString());
public JSONObject makeRequest(String param)
{
try
{
Einstellen der Verbindung
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();
Einstellen des Ausgangsstroms
dataOutputStream = new DataOutputStream(connection.getOutputStream());
Ich benutze dies, um im Logcat zu sehen, was ich sende
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;
hier wird der String konstruiert
while ((line = reader.readLine()) != null)
{
result.append(line);
}
Ich benutze dieses Protokoll, um zu sehen, was es in der Antwort kommt
Log.d("INPUTSTREAM: ",result.toString());
Instanziieren eines JSON mit dem String, der die Serverantwort enthält
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;
}