增量更新项目时的备份MyBak
在增量更新项目时,做好备份十分重要,这里提供一个方法备份java Web所更新的文件。
把更新包放在指定目录,配好如下webappFolder、updateFolder以及bakeupFolder的路径。
import java.io.BufferedWriter;
import java.io.File;
import java.io.FileInputStream;
import java.io.FileNotFoundException;
import java.io.FileOutputStream;
import java.io.FileWriter;
import java.io.IOException;
import java.io.InputStream;
import java.io.PrintStream;
import java.text.SimpleDateFormat;
import java.util.Date; public class MyBak
{
private static StringBuffer globalTxtMessage = new StringBuffer("");
private static StringBuffer stdoutMessage = new StringBuffer("");
private static int totalFileNumber = 0;
private static int totalSuccessCopyNumber = 0;
private static int totalNewFileNumber = 0; public static void main(String[] args)
{
String today = new SimpleDateFormat("yyyy-MM-dd").format(new Date()); String webappFolder = "/www/htdocs/webapps/M4"; String updateFolder = "/home/whaty/bakeForUpdate/update/" + today; String backupFolder = "/home/whaty/bakeForUpdate/bake/" + today; if (webappFolder.equals(backupFolder)) {
stdoutMessage.append("you can't just copy thins to the webapps folder!\n");
globalTxtMessage = new StringBuffer("");
stdoutMessage = new StringBuffer("");
} else {
String msg = backupFiles(updateFolder, webappFolder, backupFolder);
System.out.print(msg);
globalTxtMessage = new StringBuffer("");
stdoutMessage = new StringBuffer("");
}
} public static String backupFiles(String _updateFolder, String _webappFolder, String _backupFolder)
{
String today = new SimpleDateFormat("yyyy-MM-dd").format(new Date());
String now = new SimpleDateFormat("yyyy-MM-dd hh:mm:ss").format(new Date());
try {
File updateFolder = new File(_updateFolder);
File webappFolder = new File(_webappFolder);
File backupFolder = new File(_backupFolder); globalTxtMessage.append("============" + now + "Backup Log==========\n");
globalTxtMessage.append("============初始化条件测试开始===============\n");
stdoutMessage.append("============init test start===============\n"); if (!(updateFolder.exists())) {
globalTxtMessage.append(_updateFolder + "更新包文件夹找不到!\n");
stdoutMessage.append(" the upload folder \"" + _updateFolder + "\" can Not found! \n please make sure you have upload the folder!!!!\n");
}
if (!(webappFolder.exists())) {
globalTxtMessage.append("项目Webapp文件夹" + _webappFolder + "找不到!\n");
stdoutMessage.append("the Webapp folder " + _webappFolder + " can Not found!!!\n please make sure the folder is exists!!!!\n");
return stdoutMessage.toString();
}
if (!(backupFolder.exists())) {
globalTxtMessage.append("自动创建备份文件夹" + backupFolder.getAbsolutePath() + "\n");
stdoutMessage.append("auto create folder " + backupFolder.getAbsolutePath() + "\n");
backupFolder.mkdirs();
}
globalTxtMessage.append("============初始化条件测试结束===============\n");
stdoutMessage.append("============init test end===============\n"); Long start = Long.valueOf(System.currentTimeMillis()); copyFilesToDirectory(updateFolder, webappFolder, backupFolder); Long end = Long.valueOf(System.currentTimeMillis()); Long oprationMillisTime = Long.valueOf(end.longValue() - start.longValue());
Long oprationSecondTime = Long.valueOf((end.longValue() - start.longValue()) / 1000L); globalTxtMessage.append("备份完成!\n");
globalTxtMessage.append("=========================================\n");
globalTxtMessage.append("总文件数:" + totalFileNumber + "\n");
globalTxtMessage.append("成功复制:" + totalSuccessCopyNumber + "\n");
globalTxtMessage.append("新增文件数:" + totalNewFileNumber + "\n");
globalTxtMessage.append("拷贝文件所需时间[oprationMillisTime]:" + oprationMillisTime + " 毫秒\n");
globalTxtMessage.append("拷贝文件所需时间[oprationSecondTime]:" + oprationSecondTime + " 秒\n"); stdoutMessage.append("backup done!\n");
stdoutMessage.append("total files number:" + totalFileNumber + "\n");
stdoutMessage.append("success copies number:" + totalSuccessCopyNumber + "\n");
stdoutMessage.append("new files number:" + totalNewFileNumber + "\n");
stdoutMessage.append("copy files time[oprationMillisTime]:" + oprationMillisTime + " MillisTime...\n");
stdoutMessage.append("copy files time[oprationSecondTime]:" + oprationSecondTime + " sencends...\n");
stdoutMessage.append("check more info in this file:" + _backupFolder + "/" + today + "_bak" + "/backupLog.txt\n");
File logFile=new File(_backupFolder + "/backupLog.txt");
logFile.createNewFile();
FileWriter fw = new FileWriter(logFile);
BufferedWriter bw = new BufferedWriter(fw);
bw.write(globalTxtMessage.toString());
bw.flush();
bw.close();
}
catch (Exception e)
{
globalTxtMessage.append("============The main function Exception...==============\n");
e.printStackTrace();
}
return stdoutMessage.toString();
} public static void copyFilesToDirectory(File _updateFolder, File _webappFolder, File _backupFolder) {
String today = new SimpleDateFormat("yyyy-MM-dd").format(new Date());
try {
if (!(_updateFolder.isDirectory())) {
File srcFile = new File(_webappFolder.getAbsolutePath() + _updateFolder.getPath().split(today)[1]);
System.out.println(_webappFolder.getAbsolutePath() + _updateFolder.getPath().split(today)[1]);
totalFileNumber += 1;
if (!(srcFile.exists())) {
totalNewFileNumber += 1;
globalTxtMessage.append("文件:" + srcFile.getPath() + " 在原webapp文件文件夹中不存在,请确认这是个新添加的文件 \n"); return;
}
File destFile = new File(_backupFolder.getAbsolutePath() + _updateFolder.getPath().split(today)[1]);
copyFile(srcFile.getAbsolutePath(), destFile.getAbsolutePath());
totalSuccessCopyNumber += 1; return;
} File[] files = _updateFolder.listFiles();
for (int i = 0; i < files.length; ++i)
{
copyFilesToDirectory(files[i], _webappFolder, _backupFolder);
}
}
catch (Exception e) {
globalTxtMessage.append("复制文件出错! \n");
e.printStackTrace();
}
} public static void copyFile(String oldPath, String newPath)
{
int bytesum = 0;
int byteread = 0;
File oldfile = new File(oldPath);
File newfile = new File(newPath); if (!(newfile.getParentFile().exists())) {
newfile.getParentFile().mkdirs();
} if (oldfile.exists()) {
InputStream inStream = null;
FileOutputStream fs = null;
try {
inStream = new FileInputStream(oldPath);
fs = new FileOutputStream(newPath); byte[] buffer = new byte[1444];
while ((byteread = inStream.read(buffer)) != -1) {
bytesum += byteread;
fs.write(buffer, 0, byteread);
}
}catch (FileNotFoundException e) {
globalTxtMessage.append("复制文件:" + oldfile.getName() + " 时找不到文件! \n");
e.printStackTrace();
}catch (IOException e){
globalTxtMessage.append("复制文件:" + oldfile.getName() + " 时出错! \n");
e.printStackTrace();
} finally {
try {
if (inStream != null)
inStream.close(); if (fs != null)
fs.close();
} catch (IOException e) {
e.printStackTrace();
}
}
globalTxtMessage.append("文件复制成功:" + oldfile.getAbsolutePath() + "(size:" + (bytesum / 1024.0D) + "KB)\n"); Long oldFileLastModifiedTime = Long.valueOf(oldfile.lastModified());
newfile.setLastModified(oldFileLastModifiedTime.longValue());
} else {
globalTxtMessage.append("文件:" + oldfile.getAbsolutePath() + " 找不到!\n");
}
}
}
运行javac MyBak.java,java MyBak。
这时程序会从旧有项目拷贝一份和更新包相同的文件到bakeupFolder目录。
最后,我们就可以大胆的把更新包在项目中覆盖老文件了。
增量更新项目时的备份MyBak的更多相关文章
- svn更新项目时遇到被锁住的问题
来自:http://blog.csdn.net/woshixuye/article/details/7776742 遇到问题 我们用svn更新某个项目的时候,有时候会遇到一些什么文件夹被locked等 ...
- WEBAPI 最近更新项目时 服务器总是提示:An error has occurred.
解决办法: 在webconfig中设置 <system.web><customErrors mode="Off"/></system.web> ...
- 做web项目时对代码改动后浏览器端不生效的应对方法(持续更新)
做web项目时,常常会遇到改动了代码,但浏览器端没有生效,原因是多种多样的,我会依据我遇到的情况逐步更新解决的方法 1.执行的时候採用debug模式,普通情况下使用项目部署button右边那个butt ...
- 做web项目时对代码修改后浏览器端不生效的应对方法(持续更新)
做web项目时,经常会遇到修改了代码,但浏览器端没有生效,原因是多种多样的,我会根据我遇到的情况逐步更新解决办法 1.运行的时候采用debug模式,一般情况下使用项目部署按钮右边那个按钮下的tomca ...
- 解决svn更新项目目录时“Error:svn: E155037: Previous operation has not finished; run 'cleanup' if it was interrupted”的报错问题
今天在IDEA更新项目目录时,发现报错“Error:svn: E155037: Previous operation has not finished; run 'cleanup' if it was ...
- 遇到问题----java----myeclipse或者eclipse发布的项目时配置文件不更新或者无配置文件
myeclipse或者eclipse发布的项目时配置文件不更新或者无配置文件. 正常的web项目有目录 src/main/resources 和 src/main/java 这两个目录默认在编译发布时 ...
- svn更新项目之后,项目报错一大堆并且tomcat部署项目时找不到项目
原因是:svn更新项目以后jdk路劲不对,需要使用自己安装的jdk,即可.具体步骤如下 第一步:右击项目-->Build path-->Configure Build path... 第二 ...
- 前端遇上Go: 静态资源增量更新的新实践
前端遇上Go: 静态资源增量更新的新实践https://mp.weixin.qq.com/s/hCqQW1F8FngPPGZAisAWUg 前端遇上Go: 静态资源增量更新的新实践 原创: 洋河 美团 ...
- 谈谈混合 App Web 资源的打包与增量更新
综述 移动 App 的运行环境具有带宽不稳定,流量收费,启动速度比较重要等特点,所以混合 App 如何加载 Web 资源并不是一个新问题.本文目的是总结出一种资源打包下载的思路和方案,并且提供一种打包 ...
随机推荐
- [Java]Java简介
Java版本历史 1995年5月23日,Java语言诞生 1996年1月,第一个JDK1.0诞生 1996年4月,10个最主要的操作系统供应商申明将在其产品中嵌入JAVA技术 1996年9月,约8.3 ...
- Line计划今年全面进军中国市场:建立本地团队
北京时间6月13日下午消息,<华尔街日报>报道称,移动消息应用Line计划于今年晚些时候进军中国市场.Line将在中国建立本地团队,开发内容和功能,从而进一步开拓中国这一全球最大的移动市场 ...
- HDU 1045 - Fire Net (最大独立集)
题意:给你一个正方形棋盘.每个棋子可以直线攻击,除非隔着石头.现在要求所有棋子都不互相攻击,问最多可以放多少个棋子. 这个题可以用搜索来做.每个棋子考虑放与不放两种情况,然后再判断是否能互相攻击来剪枝 ...
- android 单选、多选弹出菜单
菜单单选窗口: import android.app.Activity;import android.app.AlertDialog;import android.content.DialogInte ...
- maven学习之二M2_HOME简介
在<maven学习之一>中介绍了M2_HOME指向了maven的安装目录,如下图: weiwan..................
- 2016-1-3点菜系统demo的实现,pickerView的学习
// // ViewController.m // pickView // // Created by Mac on 16/1/3. // Copyright © 2016年 Mac. All rig ...
- 用javascript正则表达式来格式化金额
<html><head><script> function a() { var amount = "-22334.334455"; //if(/ ...
- python03函数、递归
本节内容 1. 函数基本语法及特性 2. 参数与局部变量 3. 返回值 4.递归 5.匿名函数 6.函数式编程介绍 7.高阶函数 8.内置函数 1.函数基本语法及特性 函数是什么? 函数一词来源于数学 ...
- Linux/Unix 桌面趣事:文字模式下的 ASCII 艺术与注释绘画
boxes 命令不仅是一个文本过滤器,同时是一个很少人知道的有趣工具,它可以在输入的文本或者代码周围框上各种ASCII 艺术画.你可以用它快速创建邮件签名,或者在各种编程语言中留下评论块.这个命令可以 ...
- 50元制作PS2键盘无线监控装置
0×00 什么是Arduino Arduino实际上就是一种开发板,将微控制器和必需的元件集成在一块电路板上,扩展出完善的接口和针脚,就可以接上各种各样的传感器,完成你心中的设计,你也可以把它 ...