Differences

This shows you the differences between two versions of the page.

Link to this comparison view

uri_parameter_encoding [2021/04/05 11:23] (current)
Line 1: Line 1:
 +====== URI Parameter Encoding ======
 +To encode the URI or a part of it is not always as easy as it seems. The standard Java library has a the ''java.net.URLEncoder'' class which helps a lot on the encoding part.
  
 +  URLEncoder.encode(value, "UTF-8");
 +
 +{{tag>devel java}}