"자바 rawurlencode()"의 두 판 사이의 차이

(새 문서: ==개요== ;자바 rawurlencode() <source lang='java'> String input = "hello 123 http://zetawiki.com 한글"; System.out.println(URLEncoder.encode(input, "UTF-8").replace("*", "%2A")....)
 
8번째 줄: 8번째 줄:


==같이 보기==
==같이 보기==
* [[자바 urlencode()]]
* [[자바 URLEncoder.encode()]]
* [[함수 rawurlencode()]]
* [[함수 rawurlencode()]]


[[분류: Java]]
[[분류: Java]]

2017년 4월 13일 (목) 16:15 판

1 개요

자바 rawurlencode()
String input = "hello 123 http://zetawiki.com 한글";
System.out.println(URLEncoder.encode(input, "UTF-8").replace("*", "%2A").replace("+", "%20").replace("%7E", "~"));
// hello%20123%20http%3A%2F%2Fzetawiki.com%20%ED%95%9C%EA%B8%80

2 같이 보기

문서 댓글 ({{ doc_comments.length }})
{{ comment.name }} {{ comment.created | snstime }}