有没有办法在构造 URI 时故意忽略 RFC-2396
我正在尝试构建一个包含非法字符的 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+
是 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
执行此操作的唯一方法是根本不使用 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 :)