Отправка строки с пробелами в ответ от php на Android - PullRequest
2 голосов
/ 13 апреля 2019

Я хочу отправить строку с пробелами из php в Android studio. Я использую этот onPostExecute(String result) для обработки строкового ответа, содержащего пробелы, но он возвращает первое слово предложения.

вот мой код-

public class PostData extends AsyncTask<String, Void, String>{
        @Override
        protected  String doInBackground(String... args){
             byte[] result = null;
            String str = " ";
            HttpClient httpclient = new DefaultHttpClient();
            HttpPost httppost = new HttpPost("http://192.168.42.98:81/launch2.php");

            try{
                List<NameValuePair> nameValuePairs = new ArrayList<>(1);
                nameValuePairs.add(new BasicNameValuePair("input",str_input ));
                httppost.setEntity(new UrlEncodedFormEntity(nameValuePairs));

                HttpResponse response = httpclient.execute(httppost);
                StatusLine statusLine = response.getStatusLine();
                if(statusLine.getStatusCode()== HttpURLConnection.HTTP_OK){
                    result = EntityUtils.toByteArray(response.getEntity());
                    str = new String(result, "UTF-8");

                }
            }catch(ClientProtocolException e){
                //TODO
                tv_result.setText(e.getMessage());
            }
            catch(IOException e){
                //TODO
                tv_result.setText(e.getMessage());
            }
            return str;
        }
        protected void onPostExecute(String result){
            for(String word : result.split(" ")) {
                tv_result.setText(word);
            }
        }
    } 

вот мой код php-

<?php
    $var= $_POST["input"];
    $output= exec("python C:\Users\hp\AppData\Local\Programs\Python\Python36\Stem.py .$var");
    echo $output;
?>
Добро пожаловать на сайт PullRequest, где вы можете задавать вопросы и получать ответы от других членов сообщества.
...