Ich muss eine http Post Anfrage mit einem JSON String, den ich bereits generiert habe, machen. Ich habe versucht, verschiedene zwei verschiedene Methoden:HTTP POST Anfrage mit JSON String in JAVA
1.HttpURLConnection
2.HttpClient
aber ich habe das gleiche „unerwünschte“ resultieren aus beiden. Mein Code bisher mit HttpURLConnection ist:
public static void SaveWorkflow() throws IOException {
URL url = null;
url = new URL(myURLgoeshere);
HttpURLConnection urlConn = null;
urlConn = (HttpURLConnection) url.openConnection();
urlConn.setDoInput (true);
urlConn.setDoOutput (true);
urlConn.setRequestMethod("POST");
urlConn.setRequestProperty("Content-Type", "application/json");
urlConn.connect();
DataOutputStream output = null;
DataInputStream input = null;
output = new DataOutputStream(urlConn.getOutputStream());
/*Construct the POST data.*/
String content = generatedJSONString;
/* Send the request data.*/
output.writeBytes(content);
output.flush();
output.close();
/* Get response data.*/
String response = null;
input = new DataInputStream (urlConn.getInputStream());
while (null != ((response = input.readLine()))) {
System.out.println(response);
input.close();
}
}
Mein Code bisher mit Httpclient ist:
public static void SaveWorkflow() {
try {
HttpClient httpClient = new DefaultHttpClient();
HttpPost postRequest = new HttpPost(myUrlgoeshere);
StringEntity input = new StringEntity(generatedJSONString);
input.setContentType("application/json;charset=UTF-8");
postRequest.setEntity(input);
input.setContentEncoding(new BasicHeader(HTTP.CONTENT_TYPE,"application/json;charset=UTF-8"));
postRequest.setHeader("Accept", "application/json");
postRequest.setEntity(input);
HttpResponse response = httpClient.execute(postRequest);
BufferedReader br = new BufferedReader(
new InputStreamReader((response.getEntity().getContent())));
String output;
while ((output = br.readLine()) != null) {
System.out.println(output);
}
httpClient.getConnectionManager().shutdown();
} catch (MalformedURLException e) {
e.printStackTrace();
} catch (IOException e) {
e.printStackTrace();
}
}
Wo JsonString erzeugt wird, wie folgt aus:
{"description":"prova_Process","modelgroup":"","modified":"false"}
Die Antwort bekomme ich ist:
{"response":false,"message":"Error in saving the model. A JSONObject text must begin with '{' at 1 [character 2 line 1]","ids":[]}
Irgendeine Idee bitte?
Haben Sie den String für ein Objekt nur versucht Umwandlung (Parsen der JSON) ohne den HTTP-Übertragungsschritt in der Mitte? –
Versuchen Sie mit generatedJSONString.trim() – aquaraga
sieht aus wie Sie einen RESTful Webservice verwenden möchten; Vielleicht möchten Sie Ihr Leben sehr einfach gestalten, indem Sie die JAX-RS API anwenden. – Gimby