07 2016 档案

摘要:首先 做好备份, 脚本语句在测试环境下 测试一遍。。 通过文件的inode号删除文件 先用ls -i 找出要删除文件的inode 号 ls -i |grep xxxxxx|awk '{print $2}'|xargs -i rm -f {} xxxxxx为文件的 inode 号 通过文件大小删除文件 阅读全文
posted @ 2016-07-28 15:57 贺呵呵 阅读(13334) 评论(1) 推荐(0)
摘要:1、新建一个项目 2、编写测试脚本 3、配置ant的build.xml脚本 4、集成到jenkins,并运行 1.新建项目 注意jdk的版本要一致 eclipse Window --Preference --java --Compiler ant Window --Preference -- Ant 阅读全文
posted @ 2016-07-13 19:29 贺呵呵 阅读(1819) 评论(1) 推荐(0)
摘要:备用 package http; import java.io.UnsupportedEncodingException; import sun.misc.*; public class Base64 { // ���� public String getBase64(String str) { b 阅读全文
posted @ 2016-07-12 10:55 贺呵呵 阅读(2795) 评论(0) 推荐(0)