有没有办法在构造 URI 时故意忽略 RFC-2396

发布于 2024-11-06 13:18:11 字数 457 浏览 1 评论 0原文

我正在尝试构建一个包含非法字符的 java.net.URI,因为服务器是一个旧硬件,无法解码 RFC-2396 兼容 URI。该服务器需要一个带有这样 URI 的 http-get

http://192.168.5.10/cgi-bin/Read.exe?+0+ABC/info.xml+<g>Template</g> 

?+0+ABC/info.xml+Template 是 URI 的非法部分,我会得到java.net.MalformedURLException 异常。

将 URI 的这一部分解码为 %2B0%2BABC%2Finfo.xml%2B%3Cg%3ETemplate%3C%2Fg%3E 会导致服务器异常。

我想知道是否有办法在线获取不兼容 RFC-2396 的 java.net.URI?

I'm trying to construct a java.net.URI with illegal characters as the server is a piece of old hardware, not being able to decode RFC-2396 complients URIs. This server demands a http-get with a URI like this

http://192.168.5.10/cgi-bin/Read.exe?+0+ABC/info.xml+<g>Template</g> 

?+0+ABC/info.xml+<g>Template</g> is the illegal part of the URI and I'll get an java.net.MalformedURLException Exception.

Decoding this part of the URI to %2B0%2BABC%2Finfo.xml%2B%3Cg%3ETemplate%3C%2Fg%3E get's me a server exception.

I'm wondering if there is a way to get non RFC-2396 complient java.net.URIs on the wire?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

尹雨沫 2024-11-13 13:18:11

执行此操作的唯一方法是根本不使用 URLConnection,而仅手动编写 HTTP 请求。

如果您要连接的硬件已确定,那么您非常确定会出现什么标头,那么这应该不会那么困难; HTTP 是一个相对简单的协议。

我自己也做过一次:)

The only way to do this would be to not use URLConnection at all, and just write the HTTP request by hand.

If the hardware you're connecting to is determined, so you're pretty sure on what headers to expect, this should not be that difficult; HTTP is a relatively easy protocol.

I did this once myself :)

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文