加载不带webview的URL

时间:2018-03-24 12:54:50

标签: java android httpurlconnection

如何在不使用WebView的情况下加载URL,因为我的类没有可视化显示,只是.java文件,res / layout文件夹中没有.xml文件

我只想加载网址,而不是显示或其他内容。我会用它来发送这样的信息。

private void sendRegistrationToServer(String token) {
    //Code here
    //Load("mywebsite.com/register.php?token="+token)
}

我试过搜索但没有找到解决这个问题的方法。

谢谢你:)

1 个答案:

答案 0 :(得分:1)

您可以使用HttpURLConnection

URL url = new URL("http://example.com");
HttpURLConnection con = (HttpURLConnection) url.openConnection();
con.setRequestMethod("GET");