Java org.apache.commons.codec.net URLCodec fields, constructors, methods, implement or subclass

Example usage for Java org.apache.commons.codec.net URLCodec fields, constructors, methods, implement or subclass

Introduction

In this page you can find the methods, fields and constructors for org.apache.commons.codec.net URLCodec.

The text is from its open source code.

Subclass

org.apache.commons.codec.net.URLCodec has subclasses.
Click this link to see all its subclasses.

Constructor

URLCodec()
Default constructor.
URLCodec(String charset)
Constructor which allows for the selection of a default charset

Method

byte[]decode(byte[] bytes)
Decodes an array of URL safe 7-bit characters into an array of original bytes.
Stringdecode(String pString)
Decodes a URL safe string into its original form using the default string charset.
Objectdecode(Object pObject)
Decodes a URL safe object into its original form.
Stringdecode(String pString, String charset)
Decodes a URL safe string into its original form using the specified encoding.
byte[]decodeUrl(byte[] bytes)
Decodes an array of URL safe 7-bit characters into an array of original bytes.
byte[]encode(byte[] bytes)
Encodes an array of bytes into an array of URL safe 7-bit characters.
Stringencode(String pString)
Encodes a string into its URL safe form using the default string charset.
Objectencode(Object pObject)
Encodes an object into its URL safe form.
Stringencode(String pString, String charset)
Encodes a string into its URL safe form using the specified string charset.
byte[]encodeUrl(BitSet urlsafe, byte[] bytes)
Encodes an array of bytes into an array of URL safe 7-bit characters.