diff --git a/src/org/redkale/net/http/HttpRequest.java b/src/org/redkale/net/http/HttpRequest.java
index 80e8a7d75..9be512412 100644
--- a/src/org/redkale/net/http/HttpRequest.java
+++ b/src/org/redkale/net/http/HttpRequest.java
@@ -21,8 +21,8 @@ import org.redkale.util.ByteArray;
* Redkale提倡带简单的参数的GET请求采用类似REST风格, 因此提供了 getRequstURIPath 系列接口。
* 例如简单的翻页查询
* /pipes/record/query/offset:0/limit:20
- * 获取页号: int offset = request.getRequstURIPath("offset:", 0);
- * 获取行数: int limit = request.getRequstURIPath("limit:", 10);
+ * 获取页号: int offset = request.getRequstURIPath("offset:", 0);
+ * 获取行数: int limit = request.getRequstURIPath("limit:", 10);
*
* 详情见: http://redkale.org
*
@@ -547,8 +547,8 @@ public class HttpRequest extends Request
- * 例如请求URL /pipes/record/query/type:10
- * 获取type参数: short type = request.getRequstURIPath("type:", (short)0);
+ * 例如请求URL /pipes/record/query/type:a
+ * 获取type参数: short type = request.getRequstURIPath(16, "type:", (short)0); //type = 10
*
* @param radix 进制数
* @param prefix prefix段前缀
@@ -564,8 +564,8 @@ public class HttpRequest extends Request
* 例如请求URL /pipes/record/query/offset:0/limit:50
- * 获取起址参数: int offset = request.getRequstURIPath("offset:", 0);
- * 获取行数参数: int limit = request.getRequstURIPath("limit:", 20);
+ * 获取offset参数: int offset = request.getRequstURIPath("offset:", 0);
+ * 获取limit参数: int limit = request.getRequstURIPath("limit:", 20);
*
* @param prefix prefix段前缀
* @param defvalue 默认int值
@@ -580,8 +580,8 @@ public class HttpRequest extends Request
* 例如请求URL /pipes/record/query/offset:0/limit:50
- * 获取起址参数: int offset = request.getRequstURIPath("offset:", 0);
- * 获取行数参数: int limit = request.getRequstURIPath("limit:", 20);
+ * 获取offset参数: int offset = request.getRequstURIPath("offset:", 0);
+ * 获取limit参数: int limit = request.getRequstURIPath(16, "limit:", 20); // limit = 16
*
* @param radix 进制数
* @param prefix prefix段前缀
@@ -627,7 +627,7 @@ public class HttpRequest extends Request
* 例如请求URL /pipes/record/query/time:1453104341363/id:40
- * 获取time参数: long time = request.getRequstURIPath("time:", 0L);
+ * 获取time参数: long time = request.getRequstURIPath(16, "time:", 0L);
*
* @param radix 进制数
* @param prefix prefix段前缀
@@ -971,6 +971,19 @@ public class HttpRequest extends Request