如何用双斜杠子串?

How to substring with double slashes?

为什么下面不打印www.google.de

String url = "http://www.google.de";
System.out.println(org.apache.commons.lang.StringUtils.substringAfter("://", url)); 
//prints "" empty

您颠倒了签名中的参数。

您需要先使用输入 String 进行参数化,然后 然后 分隔符。

参见 API here

您可以尝试使用拆分功能,例如:

String url = "http://www.google.de";
System.out.println(url.split("//")[1]);

Ideone Demo