报出的错误 Cause: org.springframework.jdbc.CannotGetJdbcConnectionException: Failed to obtain JDBC Connection; nested exception is java.sql.SQLException: T Read More
String s="now it's sping,but today is so cold!"; String a=s.replaceAll("s\\w+","summer"); System.out.println("替换后 = "+a); 打印出来:替换后 = now it's summer,but today is summer cold! Read More