如何从作为请求参数传递的URL中获取内容

时间:2017-07-12 09:55:42

标签: java get httprequest

我正在尝试从我的GET调用中获取外部URL中的内容,如

http://localhost:8080/getinfo?url=http://hello-ext.com/Serving?cn=display&c=23&pl=VAST&pli=21933633&PluID=0&pos=4729&ord=[timestamp]&cim=1

然而,当我调试时,我可以看到URL被截断为 http://hello-ext.com/Serving?cn=display

在第一个'&'之后省略内容。如何传递我的GET方法的整个URL以便我得到

字符串网址= http://hello-ext.com/Serving?cn=display&c=23&pl=VAST&pli=21933633&PluID=0&pos=4729&ord=[timestamp]&cim=1

1 个答案:

答案 0 :(得分:0)

尝试

String url="http://hello-ext.com/Serving?cn=display&c=23&pl=VAST&pli=21933633&PluID=0&pos=4729&ord=[timestamp]&cim=1";
String encodedurl=URLEncoder.encode(url,"UTF-8");