FileNotFoundException for HttpURLConnection in Ice Cream Sandwich

前端 未结 4 1181
说谎
说谎 2020-12-02 22:20

I have an Android app that works fine with Android 2.x and 3.x, but it fails when run on Android 4.x.

The problem is in this section of code:

URL url         


        
4条回答
  •  天涯浪人
    2020-12-02 23:00

    A little late but you can also verify the accepted content. You can add this line to accept all kinds of contents

    urlConnection.setRequestProperty("Accept","*/*");
    

提交回复
热议问题