How I can get encoded(which java library can do this)
a & to a%20%26
without using String.replace() function?
URL Encoder -> a+%26
URIUtil.encodePath -> a%20&
UrlEscapers.urlFragmentEscaper().escape -> a%20&
How I can get encoded(which java library can do this)
a & to a%20%26
without using String.replace() function?
URL Encoder -> a+%26
URIUtil.encodePath -> a%20&
UrlEscapers.urlFragmentEscaper().escape -> a%20&