11

以前はHttpClientBasicNameValuePairsを使用していましたが、何らかの理由でHttpUrlConnectionに移行する必要があります。

したがって、このコードは、特定のパラメーターを使用してHttpPostリクエストを作成します。

public class MConnections {

    static String BaseURL = "http://www.xxxxxxxxx.com";
    static String charset = "UTF-8";
    private static String result;
    private static StringBuilder sb;
    private static List<String> cookies = new ArrayList<String>();

    public static String PostData(String url, String sa[][]) {

        HttpURLConnection connection = null;
        try {
            connection = (HttpURLConnection) new URL(BaseURL + url)
                    .openConnection();
        } catch (MalformedURLException e1) {
        } catch (IOException e1) {
        }

        cookies = connection.getHeaderFields().get("Set-Cookie");
        try{
        connection.setDoOutput(true); // Triggers POST.
        connection.setRequestProperty("Accept-Charset", charset);
        connection.setRequestProperty("Content-Type",
                "application/x-www-form-urlencoded;charset=" + charset);
        }catch (Exception e) {

            //Here i get Exception that "java.lang.IllegalStateException: Already connected"
        }
        OutputStream output = null;
        String query = "";
        int n = sa.length;
        for (int i = 0; i < n; i++) {
            try {
                query = query + sa[i][0] + "="
                        + URLEncoder.encode(sa[i][1], "UTF-8");
            } catch (UnsupportedEncodingException e) {
            }
        }
        try {
            output = connection.getOutputStream();
            output.write(query.getBytes(charset));
        } catch (Exception e) {

            //Here i get Exception that "android: java.net.protocolException: Does not support output"
        } finally {

            if (output != null)
                try {
                    output.close();
                } catch (IOException e) {
                }
        }
        InputStream response = null;
        try {
            response = connection.getInputStream();
        } catch (IOException e) {

            //Here i get Exception that "java.io.IOException: BufferedInputStream is closed"
        } finally {

            //But i am closing it here
            connection.disconnect();
        }
        try {
            BufferedReader reader = new BufferedReader(new InputStreamReader(
                    response, "iso-8859-1"), 8);
            sb = new StringBuilder();
            sb.append(reader.readLine());
            String line = "0";
            while ((line = reader.readLine()) != null) {
                sb.append("\n" + line);
            }
            response.close();
            result = sb.toString();
        } catch (Exception e) {
        }
        return result;
    }
}

しかし、コードでコメントされているような例外が発生します。

実際、AsyncTaskを使用してアクティビティからMConnections.PostData()を2回呼び出しています。これにより、例外が発生する可能性があります:Already Connectedですが、 connection.disconnectを使用しています。しかし、なぜ私はまだその例外を受け取っているのですか?

私はそれを間違った方法で使用していますか?

ありがとうございました

4

1 に答える 1

19

プロトコル例外の場合、getOutputStream()を呼び出す前に、以下を追加してみてください。

connection.setDoOutput(true);

ここでブライアンローチの答えのおかげでこの答えを発見しました: https ://stackoverflow.com/a/14026377/387781

補足:この問題は、Gingerbreadを実行しているHTC Thunderboltで発生していましたが、JellyBeanを実行しているNexus4では発生していませんでした。

于 2013-09-03T17:49:19.723 に答える