摘要: 原文地址:http://www.cnblogs.com/iloveyoucc/archive/2012/07/11/2585559.htmlLinuxShell中写循环时,常常要用到变量的自增,现在总结一下整型变量自增的方法。我所知道的,bash中,目前有五种方法:1. i=`expr $i + 1... 阅读全文
posted @ 2014-05-21 16:09 smile_tina 阅读(582) 评论(0) 推荐(0) 编辑
摘要: 原文地址:http://www.oschina.net/code/snippet_727646_18383Java密码学结构设计遵循两个原则:1)算法的独立性和可靠性。2)实现的独立性和相互作用性。算法的独立性是通过定义密码服务类来获得。用户只需了解密码算法的概念,而不用去关心如何实现这些概念。实现... 阅读全文
posted @ 2014-05-21 10:13 smile_tina 阅读(499) 评论(0) 推荐(0) 编辑
摘要: /** * 运行shell脚本 * @param shell 需要运行的shell脚本 */ public static void execShell(String shell){ try { Runtime rt = Runtime... 阅读全文
posted @ 2014-05-21 09:41 smile_tina 阅读(365) 评论(0) 推荐(0) 编辑