需求:截取特殊字符为 . 后一位
String[] str = uri.split("/");
String str1 = str[str.length-1];
String actionName = str1.substring(0, str1.indexOf("."))