码迷,mamicode.com
首页 > 移动开发 > 详细

Android 获取Web地址栏参数

时间:2015-04-21 19:58:02      阅读:135      评论:0      收藏:0      [点我收藏+]

标签:

public static void main(String[] args) {
        String url = "http://localhost/DTKCPTSWJ/NewsDetail.aspx?PID=9&ClassID=19&NewsID=115";
        String[] parameters = { "ClassID", "NewsID" };
        String u;
        try {
            u = URLDecoder.decode(url, "UTF-8");
            for (String s : parameters) {
                String[] a = new String[2];
                if (u.indexOf(s) != -1) {
                    a = (u.substring(u.indexOf(s))).split("&");
                    a[0].split("=");
                }
                System.out.println(a[0]);
            }
        } catch (UnsupportedEncodingException e) {
            e.printStackTrace();
        }
    }

 

Android 获取Web地址栏参数

标签:

原文地址:http://www.cnblogs.com/leichentao0905/p/4444998.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!