我在Android Studio上有一个使用url提取内容的项目。我使用HttpURLConnection,创建一个openConnection但它不起作用。 我的代码如下:
try
{
URL url = new URL("https://stackoverflow.com/questions/14825374/reading-a-textfile-using-inputstream/");
HttpURLConnection httpcon = (HttpURLConnection) url.openConnection();
httpcon.addRequestProperty("User-Agent", "Mozilla/4.76");
String content = httpcon.getContentType();
tv.setText(content);
}
catch (Exception e)
{
tv.setText("Can't connect");
}
但是当我在eclipse中使用相同类型的连接时,它的工作。 Android Studio和Eclipse之间有区别吗? 谢谢你的阅读。