| 程序包 | 说明 |
|---|---|
| cn.hutool.core.net |
网络相关工具
|
| 限定符和类型 | 字段和说明 |
|---|---|
static URLEncoder |
URLEncoder.ALL
已过时。
全编码的URLEncoder
0x2A, 0x2D, 0x2E, 0x30 to 0x39, 0x41 to 0x5A, 0x5F, 0x61 to 0x7A as-is '*', '-', ' |
static URLEncoder |
URLEncoder.ALL
已过时。
全编码的URLEncoder
0x2A, 0x2D, 0x2E, 0x30 to 0x39, 0x41 to 0x5A, 0x5F, 0x61 to 0x7A as-is '*', '-', ' |
static URLEncoder |
URLEncoder.DEFAULT
已过时。
默认URLEncoder
默认的编码器针对URI路径编码,定义如下: default = pchar / "/" pchar = unreserved(不处理) / pct-encoded / sub-delims(子分隔符) / ":" / "@" unreserved = ALPHA / DIGIT / "-" / "." / "_" / "~" sub-delims = "!" |
static URLEncoder |
URLEncoder.DEFAULT
已过时。
默认URLEncoder
默认的编码器针对URI路径编码,定义如下: default = pchar / "/" pchar = unreserved(不处理) / pct-encoded / sub-delims(子分隔符) / ":" / "@" unreserved = ALPHA / DIGIT / "-" / "." / "_" / "~" sub-delims = "!" |
static URLEncoder |
URLEncoder.FRAGMENT
已过时。
URL的Fragment URLEncoder
默认的编码器针对Fragment,定义如下: fragment = *( pchar / "/" / "?" |
static URLEncoder |
URLEncoder.FRAGMENT
已过时。
URL的Fragment URLEncoder
默认的编码器针对Fragment,定义如下: fragment = *( pchar / "/" / "?" |
static URLEncoder |
URLEncoder.PATH_SEGMENT
已过时。
URL的Path的每一个Segment URLEncoder
默认的编码器针对URI路径编码,定义如下: pchar = unreserved / pct-encoded / sub-delims / ":"(非空segment不包含:) / "@" unreserved = ALPHA / DIGIT / "-" / "." / "_" / "~" sub-delims = "!" |
static URLEncoder |
URLEncoder.PATH_SEGMENT
已过时。
URL的Path的每一个Segment URLEncoder
默认的编码器针对URI路径编码,定义如下: pchar = unreserved / pct-encoded / sub-delims / ":"(非空segment不包含:) / "@" unreserved = ALPHA / DIGIT / "-" / "." / "_" / "~" sub-delims = "!" |
static URLEncoder |
URLEncoder.QUERY
已过时。
用于查询语句的URLEncoder
编码器针对URI路径编码,定义如下: 0x20 ' ' =》 '+' 0x2A, 0x2D, 0x2E, 0x30 to 0x39, 0x41 to 0x5A, 0x5F, 0x61 to 0x7A as-is '*', '-', ' |
static URLEncoder |
URLEncoder.QUERY
已过时。
用于查询语句的URLEncoder
编码器针对URI路径编码,定义如下: 0x20 ' ' =》 '+' 0x2A, 0x2D, 0x2E, 0x30 to 0x39, 0x41 to 0x5A, 0x5F, 0x61 to 0x7A as-is '*', '-', ' |
| 限定符和类型 | 方法和说明 |
|---|---|
static URLEncoder |
URLEncoder.createAll()
已过时。
创建URLEncoder
编码器针对URI路径编码,定义如下: 0x2A, 0x2D, 0x2E, 0x30 to 0x39, 0x41 to 0x5A, 0x5F, 0x61 to 0x7A as-is '*', '-', ' |
static URLEncoder |
URLEncoder.createAll()
已过时。
创建URLEncoder
编码器针对URI路径编码,定义如下: 0x2A, 0x2D, 0x2E, 0x30 to 0x39, 0x41 to 0x5A, 0x5F, 0x61 to 0x7A as-is '*', '-', ' |
static URLEncoder |
URLEncoder.createDefault()
已过时。
创建默认URLEncoder
默认的编码器针对URI路径编码,定义如下: default = pchar / "/" pchar = unreserved(不处理) / pct-encoded / sub-delims(子分隔符) / ":" / "@" unreserved = ALPHA / DIGIT / "-" / "." / "_" / "~" sub-delims = "!" |
static URLEncoder |
URLEncoder.createDefault()
已过时。
创建默认URLEncoder
默认的编码器针对URI路径编码,定义如下: default = pchar / "/" pchar = unreserved(不处理) / pct-encoded / sub-delims(子分隔符) / ":" / "@" unreserved = ALPHA / DIGIT / "-" / "." / "_" / "~" sub-delims = "!" |
static URLEncoder |
URLEncoder.createFragment()
已过时。
URL的Fragment URLEncoder
默认的编码器针对Fragment,定义如下: fragment = *( pchar / "/" / "?" |
static URLEncoder |
URLEncoder.createFragment()
已过时。
URL的Fragment URLEncoder
默认的编码器针对Fragment,定义如下: fragment = *( pchar / "/" / "?" |
static URLEncoder |
URLEncoder.createPathSegment()
已过时。
URL的Path的每一个Segment URLEncoder
默认的编码器针对URI路径的每一段编码,定义如下: pchar = unreserved / pct-encoded / sub-delims / ":"(非空segment不包含:) / "@" unreserved = ALPHA / DIGIT / "-" / "." / "_" / "~" sub-delims = "!" |
static URLEncoder |
URLEncoder.createPathSegment()
已过时。
URL的Path的每一个Segment URLEncoder
默认的编码器针对URI路径的每一段编码,定义如下: pchar = unreserved / pct-encoded / sub-delims / ":"(非空segment不包含:) / "@" unreserved = ALPHA / DIGIT / "-" / "." / "_" / "~" sub-delims = "!" |
static URLEncoder |
URLEncoder.createQuery()
已过时。
创建用于查询语句的URLEncoder
编码器针对URI路径编码,定义如下: 0x20 ' ' =》 '+' 0x2A, 0x2D, 0x2E, 0x30 to 0x39, 0x41 to 0x5A, 0x5F, 0x61 to 0x7A as-is '*', '-', ' |
static URLEncoder |
URLEncoder.createQuery()
已过时。
创建用于查询语句的URLEncoder
编码器针对URI路径编码,定义如下: 0x20 ' ' =》 '+' 0x2A, 0x2D, 0x2E, 0x30 to 0x39, 0x41 to 0x5A, 0x5F, 0x61 to 0x7A as-is '*', '-', ' |
Copyright © 2022. All rights reserved.