在 VB6 中进行标准 URL 编码的最简单且可移植的方法是什么?
我们公司有一个VB6程序,现在需要与一些内部Web应用程序/Web服务集成。为了与这些 Web 服务交互,参数需要进行 URL 编码。然而,VB6不提供诸如HttpUtility.UrlEncode()之类的功能,并且默认字符集是Unicode而不是UTF-8。我正在寻找一种最简单、最便携的方法来使 VB6 Web 请求符合标准。请各位指教。
谢谢! 蔡威廉
Our company has a VB6 program, and it now needs to be integrated with some internal web applications / web services. In order to interact with those web services, parameters need to be URL-encoded. However, VB6 doesn't provide such as HttpUtility.UrlEncode(), as well as the default charset is Unicode rather than UTF-8. I'm seeking a most easier and portable way to make the VB6 web request to conform to the standard. Please kindly advise.
Thanks!
William Choi
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
您可以考虑在 shlwapi.dll 中使用 UrlEscape。
You might consider UrlEscape in shlwapi.dll.
我找到了以下链接中列出的帮助者。它们确实很有帮助并且便于携带。
VB6.0 中的 Unicode 字符串转换为 UTF8 字节
I found myself the helpers listed in the following link. They're really helpful and portable.
Unicode string to UTF8 bytes in VB6.0
您可能必须编写自己的编码器。
这并不是非常困难。
这篇维基百科文章可以帮助您入门。
You may have to write your own encoder.
It's not terribly difficult.
This Wikipedia article can help you get started.