如何从Android中的URL获取参数?
我有这样的网址:
http://www.chalklit.in/post.html?chapter=V-Maths-
Addition%20&%20Subtraction&post=394
如何获取章节和帖子的参数值?
我的URL在Chapter参数的值中包含“&”。
回答:
您可以在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 "
以上是 如何从Android中的URL获取参数? 的全部内容, 来源链接: utcz.com/qa/413049.html