previous |
start |
next
Encoding
- GET and Post requests must both be encoded
- The scheme is called URL encoding
- Characters that are not ASCII letters or numbers are encoded
- Spaces are encoded as + character
- Other bytes are encoded as %xy where xy is the
hexadecimal value of the byte
- Use static methods URLEncoder.encode and
URLDecoder.decode
previous |
start |
next