Android POST java.io.FileNotFoundException:http://

时间:2011-07-23 21:46:50

标签: android http post filenotfoundexception

您好我正在尝试通过POST发送bytes []在andriod byt中我得到java.io.FileNotFoundException:http://xxx.xxx.xx ...,当代码到达inputStream = connection.getInputStream()时,我得到了异常;

任何想法?

        byte[] array = new byte[]{1,1,2,3,4,4};

        String connectionString = "http://" + url + ":" + port + "/" + uploadApp;

        URL urle = new URL(connectionString);

        URLConnection httppost = urle.openConnection();
        connection = (HttpURLConnection) httppost;
        connection.setDoInput(true);
        connection.setDoOutput(true);
        connection.setRequestMethod("POST");
        connection.setRequestProperty("User-Agent", "Tranz-Version-t1.914");
        connection.setRequestProperty("Accept_Language", "en-US");
        connection.setRequestProperty("Content-Type", "application/x-www-form-urlencoded");
        outputStream = connection.getOutputStream();

        outputStream.write(array);
        outputStream.flush();
        outputStream.close();
        inputStream = connection.getInputStream(); // here i got the eception

0 个答案:

没有答案