Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
在处理类型的请求时
GET /someFile.txt HTTP/1.1
是否有一个库可以帮助您轻松找到 /someFile.txt,或者手动拆分和解析内容是否常见?没什么大不了的,只是想知道。
message.split("\\s+")[1] // works but just looks silly
如果您在服务器(servlet 容器)端,HttpServletRequest.getPathInfo应该完成这项工作。
HttpServletRequest.getPathInfo
http://goo.gl/gRW7H