Try these lines before
int responsecode = con.getResponseCode();
Code:
con.setRequestMethod("GET");
con.connect();
Also check if you have added the following line to your Manifest file
Code:
<uses-permission android:name="android.permission.INTERNET">
</uses-permission>
Best of luck!