Hallo,
Ich habe eine PutMethode welche einen Inhalt an ein Server schickt:
Ich würde gerne die Uhrzeit aus der Response abgreifen; s. Anhang.
Jemand ne Idee?
Vielen Dank!
Ich habe eine PutMethode welche einen Inhalt an ein Server schickt:
Java:
PutMethod putMethod = new PutMethod( get_Host() );
putMethod.setDoAuthentication(false);
try {
putMethod.setRequestHeader("Content-Type", "text/plain");
putMethod.setRequestEntity(new StringRequestEntity(content, null, null));
putMethod.setContentChunked(true);
httpClient.executeMethod(putMethod);
String response = putMethod.getResponseBodyAsString();
TpegCanListener.resetStringToSend(response);
LOG.logDebug("Statuscode: {0}", String.valueOf(putMethod.getStatusCode()) );
LOG.logDebug("RequestHeaders: {0}", String.valueOf(putMethod.getRequestHeaders().toString()) );
LOG.logDebug("Response: {0}", response);
Ich würde gerne die Uhrzeit aus der Response abgreifen; s. Anhang.
Jemand ne Idee?
Vielen Dank!