не удается разрешить writeStream - HTTPConnection POST - PullRequest
0 голосов
/ 23 июня 2018

Я пытаюсь отправить сообщение из Java - Android Studio в RESTful api, и по какой-то причине в среде IDE не удается разрешить "writeStream (output)", как в HttpUrlConnection

        /* POSTING TO RESTful API */
    URL url = null;
    try {
        url = new URL("http://kz.test/api/v1/reports");
        // Open the HTTP connection to the website
        HttpURLConnection client = (HttpURLConnection) url.openConnection();
        client = (HttpURLConnection) url.openConnection();
        //Set a request to POST
        client.setRequestMethod("POST");
        // Todo: SET Value's to each Key posting to.
        client.setRequestProperty("KEY","VALUE");
        client.setDoOutput(true);
        //Output the info to the server (the stream) then remove and close stream
        OutputStream outputPost = new BufferedOutputStream(client.getOutputStream());
    writeStream(outputPost); //Todo: fixme writeStream

        outputPost.flush();
        outputPost.close();
        // And close HTTP connection...
        if(client != null) // just in case
        {
            client.disconnect();
        }
    } catch (MalformedURLException e) {
        e.printStackTrace();
    } catch (ProtocolException e) {
        e.printStackTrace();
    } catch (IOException e) {
        e.printStackTrace();
    }

DoВы знаете, что может вызвать это?Спасибо всем заранее!

...