Windows是否有任何内置工具来编码/解码URL?

Windows中的certutil utiliiy可用于执行Base64编码和解除locking。 有没有用于URL编码和解码的内置工具? 网上有许多免费的工具。 但我特别寻找Windows内置工具,或者如果不是简单的脚本,可以在Windows上运行。

谢谢!

Base64 VBA

Base64编码和解码可以用VBA完成。 您可以复制/粘贴此代码并将其放入Excel VBA中,然后使用它的方法对Base64进行编码和解码。

URL编码/解码VBA

如何在Excel VBA中对URL进行URL编码? VBA是否有内置的URL解码? 是一个URL解码器。 使用这些工具,您应该可以在Windows环境中使用MS Office产品(如Excel和VBA)进行编码和解码。

Base64 PowerShell

如果你使用powershell,请查看: http : //vstepic.blogspot.com/2013/02/how-to-convert-string-to-base64-and.html 。 摘自该网站:

 PS C:\Temp>$b = [System.Text.Encoding]::UTF8.GetBytes("Hello World") PS C:\Temp>[System.Convert]::ToBase64String($b) SGVsbG8gV29ybGQ= PS C:\Temp>$b = [System.Convert]::FromBase64String("SGVsbG8gV29ybGQ=") PS C:\Temp>[System.Text.Encoding]::UTF8.GetString($b) Hello World 

URL编码/解码PowerShell

对于URL编码/解码,您可以使用:

 [Reflection.Assembly]::LoadWithPartialName("System.Web") | Out-Null [System.Web.HttpUtility]::UrlEncode("http://test.com/?path=what is") http%3a%2f%2ftest.com%2f%3fpath%3dwhat+is [System.Web.HttpUtility]::UrlDecode("http%3a%2f%2ftest.com%2f%3fpath%3dwhat+is") http://test.com/?path=what is 

参考: https : //gallery.technet.microsoft.com/scriptcenter/Encoding-and-Decoding-URL-99dc4256