比如客户端传来一个172.20.12.177:/nfs_xxx,这样是没问题的。但是如果172.20.12.177:/dev/xxx或者172.20.12.177:/proc/xxx是要拦截住抛出去的。
172.20.12.177:/nfs_xxx
172.20.12.177:/dev/xxx
172.20.12.177:/proc/xxx
感觉用正则还是有点烦的(不熟),请教下各位这个问题在Java中还有什么好的解决办法吗?
光阴似箭催人老,日月如移越少年。
is separated from the colon (using split 或 indexOf 再 substring 都可以),再用 startsWith 来判断。如果需要处理大小写,在 startsWith 之前先 toLowerCase 或者 toUpperCase.
split
indexOf
substring
startsWith
toLowerCase
toUpperCase
Interceptor. . . .
is separated from the colon (using
split
或indexOf
再substring
都可以),再用startsWith
来判断。如果需要处理大小写,在startsWith
之前先toLowerCase
或者toUpperCase
.Interceptor. . . .