使用android中的代码从浏览器获取URL

时间:2012-03-30 02:05:16

标签: java android

我想通过网址发送数据。我尝试过以下代码:

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发送图片吗?

1 个答案:

答案 0 :(得分:1)

查看here,了解您需要在网址上发布数据。另外,对于图像,您应该通过this