Class Percent

java.lang.Object
org.aoju.bus.core.codec.Percent
All Implemented Interfaces:
Serializable, Encoder<byte[],byte[]>

public class Percent extends Object implements Encoder<byte[],byte[]>, Serializable
百分号编码(Percent-encoding), 也称作URL编码(URL encoding) 百分号编码可用于URI的编码,也可以用于"application/x-www-form-urlencoded"的MIME准备数据
  • URI:遵循RFC 3986保留字规范
  • application/x-www-form-urlencoded,遵循W3C HTML Form content types规范,如空格须转+
Since:
Java 17+
Author:
Kimi Liu
See Also: