2

我正在尝试将 JSON 消息发布到站点并检索 JSON 消息。
java.net.ProtocolException:方法不支持请求正文:POST 有谁知道出了什么问题?提前致谢

                 HttpURLConnection conn=null;
        try{
            URL url=new URL(urlString);
            String userPassword = userName +":" + passWord;
            byte[] bytes=Base64.encode(userPassword.getBytes(),Base64.DEFAULT);
            String stringEncoding = new String(bytes, "UTF-8");

             conn = (HttpURLConnection) url.openConnection();
             conn.setReadTimeout(10000 /* milliseconds */);
             conn.setConnectTimeout(15000 /* milliseconds */);
             conn.setDoOutput(true);
             conn.setDoInput(true);
             conn.setRequestMethod("POST");
            conn.setRequestProperty ("Authorization", "Basic " + stringEncoding);
            conn.setRequestProperty("Content-Type", "application/json;charset=utf-8");
            Log.i("Net", "length="+conn.getContentLength());
            Log.i("Net", "contentType="+conn.getContentType());
            Log.i("Net", "content="+conn.getContent());
            conn.connect();

        }catch(Exception e){
            Log.d("Url Formation Connection", e.toString());
        } 

//输出{尝试{

            String requestString="{“ ";


            wr = new OutputStreamWriter(conn.getOutputStream());
            wr.write(requestString.toString());
            wr.flush();

    //input{
        BufferedReader rd = null;
        String response=" ";


            is = conn.getInputStream();
            rd = new BufferedReader(new InputStreamReader(is));
            String line;
            StringBuffer responseBuff = new StringBuffer();
            while ((line = rd.readLine()) != null) {
                // Process line...
                responseBuff.append(line);
            }
            response = responseBuff.toString();
            Log.d("response", response);
        }catch(Exception e){
            Log.d("buffer error", e.toString());
        }finally {
            if (is != null) {
                try {
                    wr.close();
                    is.close();
                } catch (IOException e) {
                    // TODO Auto-generated catch block
                    e.printStackTrace();
                }
            } 
4

3 回答 3

3

可能是您连接的服务器不允许 POST 操作。我会先尝试一个 GET 请求,看看您是否拥有该 Web 服务方法的权限。

此外,您可以使用更简单的 HttpClient 试试运气,虽然我自己没有测试过这个解决方案:http ://www.geekmind.net/2009/11/android-simple-httpclient-to.html

于 2012-10-30T14:27:18.193 回答
1

只是一个猜测,但你可以尝试设置:

 conn.setDoOutput(false);

文档说:“可选择上传请求正文。如果实例包含请求正文,则必须使用 setDoOutput(true) 进行配置。” HttpURL连接

既然你体内什么都没有,不妨设置为false。

于 2012-10-29T19:56:23.293 回答
0

Android 为setRequestMethod提供的文档很少,但是您的错误表明POST不是有效的方法。尝试使用PUT代替:

conn.setRequestMethod("PUT");

另请参阅此帖子了解您可能需要进行的任何调整。

于 2012-10-29T20:00:51.283 回答