我有一个用url 模式EmailVerification
映射的 Servlet 。/ev/*
http://example.com/ev/ce52320570
如何ce52320570
在我的 Servlet 中获取这部分 URL?
protected void doPost(HttpServletRequest request, HttpServletResponse response)
throws ServletException, IOException {
String vid = ""; // Here I need to get the id from the URL
}