1
我需要從以下網址解析參數檢索參數: http://mysite.com/customer/token/name/customerName從的Restlet
所以有兩個參數在上述情況下,客戶=>標記和名稱=>客戶名稱。 如何從上面的url中檢索參數(從鍵的名稱)?
謝謝。
我需要從以下網址解析參數檢索參數: http://mysite.com/customer/token/name/customerName從的Restlet
所以有兩個參數在上述情況下,客戶=>標記和名稱=>客戶名稱。 如何從上面的url中檢索參數(從鍵的名稱)?
謝謝。
你可以這樣做:
router.attach("/name/{name}", HelloWorldResource.class);
然後訪問它想:
String m = (String)this.getRequestAttributes().get("name");
這就是所謂的模板。
如果url是:http:// [ip]:[port]/api/name/Your Name。用url中的空格。您將無法找到附加的URI。使用參數獲取請求總是有模式:http:// [ip]:port/<靜態段>?<動態段>。例如:http://google.com?search="What%20the%20Hell&lang=EN「 –