Java String Decode by Charset decode(String url, Charset charset)

Here you can find the source of decode(String url, Charset charset)

Description

decode

License

Apache License

Declaration

public static String decode(String url, Charset charset) 

Method Source Code


//package com.java2s;
/*//from w ww. jav a 2  s . c om
 * Copyright (c) 2008-2017 Haulmont.
 *
 * Licensed under the Apache License, Version 2.0 (the "License");
 * you may not use this file except in compliance with the License.
 * You may obtain a copy of the License at
 *
 *     http://www.apache.org/licenses/LICENSE-2.0
 *
 * Unless required by applicable law or agreed to in writing, software
 * distributed under the License is distributed on an "AS IS" BASIS,
 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
 * See the License for the specific language governing permissions and
 * limitations under the License.
 */

import java.io.UnsupportedEncodingException;
import java.net.URLDecoder;

import java.nio.charset.Charset;

public class Main {
    public static String decode(String url, Charset charset) {
        try {
            return URLDecoder.decode(url, charset.name());
        } catch (UnsupportedEncodingException e) {
            throw new RuntimeException("Unable to encode using charset");
        }
    }
}

Related

  1. decode(final String str, final Charset charset)
  2. decode(String s, Charset encoding)
  3. decode(String value, Charset charset)
  4. decode(String value, Charset charset)
  5. decodeCharset(String value, String charset)
  6. decodeComponent(final String s, final Charset charset)