我需要我的应用程序才能在BackGround中触发一个具有特定地址的URL,然后服务器知道如何处理它,例如我需要打开它:
192.168.1.1:7000/Comment@hi how you doing/Commentid:21
所以服务器知道:"你好吗"是注释,21是id,然后关闭连接。我试过这个:
URL url = new URL("a Url");
URLConnection ucon = url.openConnection();
但它没有触发网址,我怎么能实现这些人呢?