如何在Android中从URL获取参数?

时间:2016-11-07 13:19:50

标签: java android

我有这样的网址:

http://www.chalklit.in/post.html?chapter=V-Maths-Addition%20&%20Subtraction&post=394

如何获取章节和帖子的参数值​​?

我的网址包含'&'在章节参数的值。

1 个答案:

答案 0 :(得分:56)

您可以使用Android中的Uri类来执行此操作; https://developer.android.com/reference/android/net/Uri.html

Uri uri = Uri.parse("http://www.chalklit.in/post.html?chapter=V-Maths-Addition%20&%20Subtraction&post=394");
String server = uri.getAuthority();
String path = uri.getPath();
String protocol = uri.getScheme();
Set<String> args = uri.getQueryParameterNames();

然后您甚至可以从查询参数中获取特定元素;

String chapter = uri.getQueryParameter("chapter");  //will return "V-Maths-Addition "