从restlet中检索参数

时间:2011-07-18 20:15:21

标签: java restlet

我需要解析以下网址中的参数: http://mysite.com/customer/token/name/customerName

所以在上面的例子中有两个参数,customer => token和name =>顾客姓名。 如何从上面的URL中检索参数(键的名称)?

感谢。

1 个答案:

答案 0 :(得分:5)

您可以执行以下操作:

 router.attach("/name/{name}", HelloWorldResource.class);

然后访问它:

 String m = (String)this.getRequestAttributes().get("name");

这叫做模板。