如何在不使用WebView的情况下加载URL,因为我的类没有可视化显示,只是.java文件,res / layout文件夹中没有.xml文件
我只想加载网址,而不是显示或其他内容。我会用它来发送这样的信息。
private void sendRegistrationToServer(String token) {
//Code here
//Load("mywebsite.com/register.php?token="+token)
}
我试过搜索但没有找到解决这个问题的方法。
谢谢你:)
答案 0 :(得分:1)
您可以使用HttpURLConnection
URL url = new URL("http://example.com");
HttpURLConnection con = (HttpURLConnection) url.openConnection();
con.setRequestMethod("GET");