作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我想,我想用URIBuilder
在这里但不完全确定...
我有以下代码:
String serverURL = getServerURL(); // ex: "http://somesrv.example.com"
String appURL = getAppURL(); // ex: "http://myapp.example.com"
我现在需要将两者相加,以便产生以下结果:
http://somesrv.example.com/fizz?widget=http://myapp.example.com
但我不只是想使用字符串 bashing (def url = serverURL + "/fizz?widget="+ appURL
)。另外我想要 URL 编码等。同样,我认为 URLBuilder
是去这里的方式,但不确定。
我看过一个使用 JAX-RS 的 UriBuilder
的例子:
String url = UriBuilder.fromUri(serverURL).path("fizz").queryParam("widget", appURL).build();
现在我只需要弄清楚如何在 Groovy 中执行此操作?
最佳答案
URIBuilder
是必经之路。
def serverURL = "http://somesrv.example.com"
def appURL = "http://myapp.example.com"
def concat = new URIBuilder(serverURL)
concat.setPath("/fizz")
concat.addQueryParam("widget", appURL)
println concat
输出:
http://somesrv.example.com/fizz?widget=http%3A%2F%2Fmyapp.example.com
关于groovy - 如何在 Groovy 中构建 URL,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/24209166/
我是一名优秀的程序员,十分优秀!