简体   繁体   中英

encode special character in URL

{URL}/text=Congratulations%21+You+are+eligible+for+.%0A

%0A = New line encoded character

I am passing encoded new line syntax in parameter. But the problem is that when I am building the above URL then its again encoded the % as %25 so above URL become {URL}/text=Congratulations%21+You+are+eligible+for+.%250A

I am not able to understand why URLBuilder encode already encoded character.

Used below code for building URLBuilder

URI url = new URIBuilder("URL").build();

If you don't need url encoding why do you use URIBuilder at all? You could simply create a new URI.

如果您想输入预编码的字符串,则需要#buildFromEncoded

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM