这些特殊字符的 file:// 协议 url 编码是什么 (; $ % ^ #)
What are the file:// protocol url encodings for these special characters(; $ % ^ #)
我有一个图像文件包含特殊字符的情况,如 $ % ^ #
。为了在 xmlworker 生成的 pdf 上显示这些图像,需要对这些图像进行 URL 编码。
我们使用 file://
协议将图像放在 xmlworker 生成的 pdf 上,而不是 https://
或 http://
协议。
请为 file://
协议 url 的以下字符提供等效的 URL 编码。
- #
- $
- %
- &
- +
你试过 URLEncoder 了吗;
String url = "file://=" + URLEncoder.encode("#aaaaa$bbbb%cccc&ddd+eeee", "UTF-8");
输出;
file://=%23aaaaa%24bbbb%25cccc%26ddd%2Beeee
和网址解码器;
String url = URLDecoder.decode("file://=%23aaaaa%24bbbb%25cccc%26ddd%2Beeee", "UTF-8");
输出
file://=#aaaaa$bbbb%cccc&ddd+eeee
我有一个图像文件包含特殊字符的情况,如 $ % ^ #
。为了在 xmlworker 生成的 pdf 上显示这些图像,需要对这些图像进行 URL 编码。
我们使用 file://
协议将图像放在 xmlworker 生成的 pdf 上,而不是 https://
或 http://
协议。
请为 file://
协议 url 的以下字符提供等效的 URL 编码。
- #
- $
- %
- &
- +
你试过 URLEncoder 了吗;
String url = "file://=" + URLEncoder.encode("#aaaaa$bbbb%cccc&ddd+eeee", "UTF-8");
输出;
file://=%23aaaaa%24bbbb%25cccc%26ddd%2Beeee
和网址解码器;
String url = URLDecoder.decode("file://=%23aaaaa%24bbbb%25cccc%26ddd%2Beeee", "UTF-8");
输出
file://=#aaaaa$bbbb%cccc&ddd+eeee