Java 字符串contains方法 Java 搜索字符串方法 Java 字符串拆分方法split Java 字符串contains方法 public class HelloWorld { public static void main(String[] args) { String text = "The cat is on the table"; System.out.print(text.contains("the")); } } Java 搜索字符串方法 Java 字符串拆分方法split