我有以下一段代码,基本上是从示例中复制粘贴的,因为我是 Java 和 Android 新手(不是编程):
URL vurl = new URL(voteurl); //vuteurl is a string containing a proper URL
HttpURLConnection hc;
hc=null;
hc = (HttpURLConnection)vurl.openConnection();
hc.setRequestMethod("GET");
hc.setDoOutput(true);
hc.setReadTimeout(10000);
hc.connect();
在“hc.connect();”这一行 应用程序崩溃,Android 通知我它已停止。将 android.permission.INTERNET 添加到应用程序使用的权限并没有帮助。