如何将查询参数追加到现有的URL中?

11 浏览
0 Comments

如何将查询参数追加到现有的URL中?

我想在现有的URL中作为查询参数添加键值对。虽然我可以通过检查URL是否存在查询部分或片段部分,并通过跳转到一堆if子句来实现这一点,但我想知道是否有一种简洁的方法可以通过Apache Commons库或等效的方式来实现这一点。

http://example.com 变为 http://example.com?name=John

http://example.com#fragment 变为 http://example.com?name=John#fragment

http://[email protected] 变为 http://[email protected]&name=John

http://[email protected]#fragment 变为 http://[email protected]&name=John#fragment

我以前运行过这种情况很多次,我希望在不破坏URL的情况下完成这个操作。

0