본문 바로가기
스프링 웹 개발

[Java] URLEncoder , URLDecoder 예제 _ UnsupportedEncodingException

by 배추잠자리 2022. 5. 4.
반응형

■ 자바 URLEncoder

/**
 * URLEncoder
 * @throws UnsupportedEncodingException
 */
public static String getURLEncode(String url) throws UnsupportedEncodingException {
    if (url == null) {
        return null;
    }

    try {
        return URLEncoder.encode(url, "UTF-8");
    } catch (Exception e) {
        return "";
    }
}

 

 

■ 자바 URLDecoder

/**
 * URLDecoder
 * @throws UnsupportedEncodingException
 */
public static String getURLDecode(String url) throws UnsupportedEncodingException {
    if (url == null) {
        return null;
    }

    return URLDecoder.decode(url, "UTF-8");
}

 

 

[keyword]

자바 URLEncoder, 자바 URLDecoder, java URLEncoder, java URLDecoder, 자바 url 인코더, 자바 url 디코더, 자바 Url Encoder, 자바 url Decoder, java Url Encoder, java url Decoder, UnsupportedEncodingException, 자바 UnsupportedEncodingException, java UnsupportedEncodingException

반응형

댓글