休息客户端。
我可以将值的局部变量添加到 Rest 客户端的 URL 字符串中吗?
示例 URL testurl = new URL(" http://XXXX:7001/lab2.local.rest1/api/v1/status/database?rxnum=1111 ");
如果我为 rxnum 提供文字值(即 1111),则上述方法有效。
但我需要休息客户端来利用局部变量的值。考试
int rxvalue = 1111;
URL testurl = new URL(" http://XXXX:7001/lab2.local.rest1/api/v1/status/database?rxnum=+(rxvalue)+ ");
这不起作用,显然我的 URL 字符串不正确。允许 URL 字符串使用局部变量 rxvalue 的值的正确语法是什么?
提前致谢