04 2016 档案

摘要:linux 本地文件上传到服务器 scp /home/liujia/file.1txt liujia@172.16.252.32:/user/liujia 从服务器下载文件 scp liujia@172.16.252.32:/user/liujia/file1.txt /home/liujia 命令 阅读全文
posted @ 2016-04-08 09:25 Maydow 阅读(429) 评论(0) 推荐(0)
摘要:1、过滤所有数字 String regEx="[0-9]"; Pattern p=Pattern.compile(regEx); Matcher m=p.matcher(str); m.replaceAll("").trim(); 2、过滤所有非数字字符 String regEx="[^0-9]"; 阅读全文
posted @ 2016-04-05 23:10 Maydow 阅读(115) 评论(0) 推荐(0)