您的位置:首页 > 其它

InputStreamReader

2015-01-06 19:08 204 查看

InputStreamReader

--------------------------------------

1.    Pattern p = Pattern.compile("\\s*|\t|\r|\n");
String str=" 	this is test text	!	";
Matcher m = p.matcher(str);
String outStr = m.replaceAll("");
System.out.println(outStr);

2.   String s = " 	this is test text	!	";
System.out.println(s.replaceAll("\\s*", ""));

-----------------------------------

-Xms512m -Xmx1048m -XX:PermSize=128m  -XX:MaxPermSize=400m

---------------------------------

启动tomcat就报Configuration problem: Failed to import bean definitions from relative location 错误

配置文件有问题
内容来自用户分享和网络整理,不保证内容的准确性,如有侵权内容,可联系管理员处理 点击这里给我发消息
标签: