POST LineString от Android до переполнения стека

Привет, у меня возникла проблема с отправкой строки из моего приложения для Android в API geoPHP. Я почти уверен, что мой код работает нормально, я просто не уверен, возможно ли отправить LineString как есть. Или если кто-нибудь знает какие-либо обходные пути.

Заранее спасибо

Android Post Метод

public String postData(LineString myLineString) throws IOException {

String response = "";
try {
URL url= new URL("myAPI");;
HttpURLConnection conn = (HttpURLConnection) url.openConnection();
conn.setRequestMethod("POST");
conn.setDoInput(true);
conn.setDoOutput(true);OutputStream os = conn.getOutputStream();
BufferedWriter writer = new BufferedWriter(
new OutputStreamWriter(os, "UTF-8"));
writer.write(myLineString);//I know this is wrong as write() can only take type String as a parameter

writer.flush();
writer.close();
os.close();
int responseCode=conn.getResponseCode();

if (responseCode == HttpsURLConnection.HTTP_OK) {
String line;
BufferedReader br=new BufferedReader(new InputStreamReader(conn.getInputStream()));
while ((line=br.readLine()) != null) {
response+=line;
}
}
else {
response="";

}
} catch (Exception e) {
e.printStackTrace();
}

return response;

}

метод geoPHP

$app->map ( "/linestring/(:id)", function ($elementID = null) use ($app)
{
$body = $app->request->getBody(); // get the body of the HTTP request (from client)

$geom = geoPHP::load('$body');

$insert_string = pg_escape_bytea($geom->out('ewkb'));
$sql = "INSERT INTO PATHS (geom) values (ST_GeomFromWKB('$insert_string'))";
try {
$db = getDB();
$stmt = pg_query($db, $sql);
$db = null;
}

catch(PDOException $e) {
//error_log($e->getMessage(), 3, '/var/tmp/phperror.log'); //Write error log
echo '{"error":{"text":'. $e->getMessage() .'}}';
}
} )->via( "POST");

1

Решение

Задача ещё не решена.

Другие решения

Других решений пока нет …

По вопросам рекламы [email protected]