我想通过网址发送数据。我尝试过以下代码:
Intent browserIntent = new Intent(Intent.ACTION_VIEW, Uri.parse("http://xxxxx.xxxxx.com/property/p.wp?p=n&refid=13&cat="+cat));
startActivity(browserIntent);
当数据插入数据库时,浏览器将返回如下内容:
http://xxxxx.xxxxx.com/property/p.wp?p=OK
通过url发送数据已经成功,但如何从浏览器获取返回URL? 我们可以通过URL发送图片吗?