摘要: 今天帮小左写个去重的方法。 几行shell 方法一: cat a b >>c for i in `cat c`;do j=$(grep $i c | wc -l)if [ $j -eq 1 ]; then echo $i; fidone 方法二: cat a b >>c sort c | uniq 阅读全文
posted @ 2016-03-25 16:53 范世强 阅读(415) 评论(0) 推荐(0) 编辑
摘要: 在读zap源码的时候碰到:UIManager.setLookAndFeel(UIManager.getSystemLookAndFeelClassName());以下来自百度知道UIManager.setLookAndFeel(lookAndFeel); 即可设置窗口风格JDK自带的有如下几个:1、 阅读全文
posted @ 2016-03-25 08:58 范世强 阅读(355) 评论(0) 推荐(0) 编辑