urlencode
是一个命令行工具,用于将字符串转换为 URL 编码格式
urlencode
,然后按 Enter 键。这将提示您输入要编码的字符串。输入字符串后,按 Enter 键,程序将显示 URL 编码后的字符串。$ urlencode
Hello, World!
Hello%2C+World%21
$ urlencode "Hello, World!"
Hello%2C+World%21
$ urlencode -i input.txt
Hello%2C+World%21
其中,input.txt
是包含要编码的字符串的文件。
$ urlencode "Hello, World!" -o output.txt
这将把 URL 编码后的字符串 Hello%2C+World%21
保存到 output.txt
文件中。
请注意,不同的操作系统和环境可能会有不同的 urlencode
实现。上述示例适用于类 Unix 系统(如 Linux 和 macOS),并且需要安装 urlencode
工具。在 Windows 系统上,您可以使用 PowerShell 的 [uri]::EscapeDataString()
方法进行 URL 编码:
[uri]::EscapeDataString("Hello, World!")