集册 Java实例教程 用urldodecoder解码url

用urldodecoder解码url

欢马劈雪     最近更新时间:2020-01-02 10:19:05

615
使用URLDecoder进行url解码

//package com.nowjava;/** 时 代 J a v a 公 众 号 - nowjava.com 提 供 **/


import java.io.UnsupportedEncodingException;

import java.net.URLDecoder;


public class Main {

    public static void main(String[] argv) throws Exception {

        String input = "nowjava.com";

        String charset = "nowjava.com";

        System.out.println(urlDecode(input, charset));

    }


    /**

     * @param input

     * @param charset

     * @return

     */

    public static String urlDecode(String input, String charset) {

        try {

            return URLDecoder.decode(input, charset);

        } 
展开阅读全文