Uri Encode the value, using the default Charset. Already encoded values are skipped. @param value to encode. @return the encoded value.
(String value)
| 51 | * @return the encoded value. |
| 52 | */ |
| 53 | public static String encode(String value) { |
| 54 | return encodeChunk(value, Util.UTF_8, false); |
| 55 | } |
| 56 | |
| 57 | /** |
| 58 | * Uri Encode the value. Already encoded values are skipped. |