package com.rd.svn; import java.text.SimpleDateFormat; import java.util.ArrayList; import java.util.Date; import java.util.Iterator; import java.util.List; import java.util.Map; import org.tmatesoft.svn.core.SVNException; import org.tmatesoft.svn.core.SVNLogEntry; import org.tmatesoft.svn.core.SVNLogEntryPath; /** * * @author lh * */ public class Main { public static void main(String[] args) throws SVNException { System.out.println("===================== corp start ====================="); String url = "http://xxx.com/branches/br_yyyy_v3.1.0_20170523"; String copeDir = "D:/workspaces/p2pv3/v3.1.0"; String targetDir = "f:/v3.1.0"; String username = "zhangsan"; String password = "zhangsan"; String prefixDir = "/branches/br_yyyy_v3.1.0_20170523"; List<String> pathList = new ArrayList<>(); List<SVNLogEntry> logs = new SVNLog(url, username, password).getSVNLogs(6387,6402);//5837 for (SVNLogEntry log : logs) { if (log.getAuthor().equals("xyadmin")) { continue; } System.out.println(log.getAuthor()+ ", 版本号:"+log.getRevision()+", 日期:"+ format(log.getDate())); Map<String, SVNLogEntryPath> paths = log.getChangedPaths(); Iterator<String> its = paths.keySet().iterator(); while (its.hasNext()) { String key = its.next(); String path = paths.get(key).getPath(); if(path.startsWith(prefixDir) && path.indexOf(".") !=-1){ pathList.add(path); } } } SVNLogEntry lastLog = logs.get(logs.size() - 1); System.out.println("文件数:"+pathList.size()+", 版本号:"+lastLog.getRevision()+", 日期:"+ format(lastLog.getDate())); for (String path : pathList) { path = path.replace(prefixDir, ""); String srcPath = copeDir + path; String destDir = targetDir +path.substring(0, path.lastIndexOf("/")); FileUtils.copyGeneralFile(srcPath, destDir); } System.out.println("===================== corp over ====================="); } private static String format(Date date){ SimpleDateFormat format = new SimpleDateFormat("yyyy-MM-dd"); return format.format(date); } }
package com.rd.svn; import java.io.File; import java.io.FileInputStream; import java.io.FileOutputStream; import java.io.IOException; import java.io.InputStream; import java.io.OutputStream; import java.net.URL; import java.util.Properties; /* * Java实现文件复制、剪切、删除操作 * 文件指文件或文件夹 * 文件分割符统一用"//" */ public class FileUtils { /** * 复制文件或文件夹 * * @param srcPath * @param destDir * 目标文件所在的目录 * @return */ public static boolean copyGeneralFile(String srcPath, String destDir) { boolean flag = false; File file = new File(srcPath); if (!file.exists()) { return false; } if (file.isFile()) { // 源文件 flag = copyFile(srcPath, destDir); } else if (file.isDirectory()) { //System.out.println(srcPath+":"+destDir); //flag = copyDirectory(srcPath, destDir); } return flag; } /** * 复制文件 * * @param srcPath * 源文件绝对路径 * @param destDir * 目标文件所在目录 * @return boolean */ private static boolean copyFile(String srcPath, String destDir) { boolean flag = false; File srcFile = new File(srcPath); if (!srcFile.exists()) { // 源文件不存在 //System.out.println("源文件不存在"); return false; } // 获取待复制文件的文件名 String fileName = srcPath .substring(srcPath.lastIndexOf("/")); String destPath = destDir + fileName; if (destPath.equals(srcPath)) { // 源文件路径和目标文件路径重复 //System.out.println("源文件路径和目标文件路径重复!"); return false; } File destFile = new File(destPath); if (destFile.exists() && destFile.isFile()) { // 该路径下已经有一个同名文件 //System.out.println("目标目录下已有同名文件!"); destFile.delete(); } File destFileDir = new File(destDir); destFileDir.mkdirs(); try { FileInputStream fis = new FileInputStream(srcPath); FileOutputStream fos = new FileOutputStream(destFile); byte[] buf = new byte[1024]; int c; while ((c = fis.read(buf)) != -1) { fos.write(buf, 0, c); } fis.close(); fos.close(); flag = true; } catch (IOException e) { e.printStackTrace(); } if (flag) { //System.out.println("复制文件成功!"); } return flag; } /** * * @param srcPath * 源文件夹路径 * @param destPath * 目标文件夹所在目录 * @return */ private static boolean copyDirectory(String srcPath, String destDir) { //System.out.println("复制文件夹开始!"); boolean flag = false; File srcFile = new File(srcPath); if (!srcFile.exists()) { // 源文件夹不存在 //System.out.println("源文件夹不存在"); return false; } // 获得待复制的文件夹的名字,比如待复制的文件夹为"E://dir"则获取的名字为"dir" String dirName = getDirName(srcPath); // 目标文件夹的完整路径 String destPath = destDir + File.separator + dirName; // //System.out.println("目标文件夹的完整路径为:" + destPath); if (destPath.equals(srcPath)) { //System.out.println("目标文件夹与源文件夹重复"); return false; } File destDirFile = new File(destPath); if (destDirFile.exists()) { // 目标位置有一个同名文件夹 //System.out.println("目标位置已有同名文件夹!"); return false; } destDirFile.mkdirs(); // 生成目录 File[] fileList = srcFile.listFiles(); // 获取源文件夹下的子文件和子文件夹 if (fileList.length == 0) { // 如果源文件夹为空目录则直接设置flag为true,这一步非常隐蔽,debug了很久 flag = true; } else { for (File temp : fileList) { if (temp.isFile()) { // 文件 flag = copyFile(temp.getAbsolutePath(), destPath); } else if (temp.isDirectory()) { // 文件夹 flag = copyDirectory(temp.getAbsolutePath(), destPath); } if (!flag) { break; } } } if (flag) { //System.out.println("复制文件夹成功!"); } return flag; } /** * 获取待复制文件夹的文件夹名 * * @param dir * @return String */ private static String getDirName(String dir) { if (dir.endsWith(File.separator)) { // 如果文件夹路径以"//"结尾,则先去除末尾的"//" dir = dir.substring(0, dir.lastIndexOf(File.separator)); } return dir.substring(dir.lastIndexOf(File.separator) + 1); } /** * 删除文件或文件夹 * * @param path * 待删除的文件的绝对路径 * @return boolean */ public static boolean deleteGeneralFile(String path) { boolean flag = false; File file = new File(path); if (!file.exists()) { // 文件不存在 //System.out.println("要删除的文件不存在!"); } if (file.isDirectory()) { // 如果是目录,则单独处理 flag = deleteDirectory(file.getAbsolutePath()); } else if (file.isFile()) { flag = deleteFile(file); } if (flag) { //System.out.println("删除文件或文件夹成功!"); } return flag; } /** * 删除文件 * * @param file * @return boolean */ private static boolean deleteFile(File file) { return file.delete(); } /** * 删除目录及其下面的所有子文件和子文件夹,注意一个目录下如果还有其他文件或文件夹 * 则直接调用delete方法是不行的,必须待其子文件和子文件夹完全删除了才能够调用delete * * @param path * path为该目录的路径 */ private static boolean deleteDirectory(String path) { boolean flag = true; File dirFile = new File(path); if (!dirFile.isDirectory()) { return flag; } File[] files = dirFile.listFiles(); for (File file : files) { // 删除该文件夹下的文件和文件夹 // Delete file. if (file.isFile()) { flag = deleteFile(file); } else if (file.isDirectory()) {// Delete folder flag = deleteDirectory(file.getAbsolutePath()); } if (!flag) { // 只要有一个失败就立刻不再继续 break; } } flag = dirFile.delete(); // 删除空目录 return flag; } /** * 由上面方法延伸出剪切方法:复制+删除 * * @param destDir * 同上 */ public static boolean cutGeneralFile(String srcPath, String destDir) { if (!copyGeneralFile(srcPath, destDir)) { //System.out.println("复制失败导致剪切失败!"); return false; } if (!deleteGeneralFile(srcPath)) { //System.out.println("删除源文件(文件夹)失败导致剪切失败!"); return false; } //System.out.println("剪切成功!"); return true; } public static void main(String[] args) throws IOException { //copyGeneralFile("E:\\test.txt", "E:\\New.txt"); // 复制文件 // copyGeneralFile("E://hello", "E://world"); // 复制文件夹 // deleteGeneralFile("E://onlinestockdb.sql"); // 删除文件 // deleteGeneralFile("E://woman"); // 删除文件夹 //cutGeneralFile("E://hello", "E://world"); // 剪切文件夹 //cutGeneralFile("E:\\test.txt", "E:\\Cow"); // 剪切文件 InputStream in = ClassLoader.getSystemResourceAsStream("care.properties"); URL url = ClassLoader.getSystemResource("care.properties"); //System.out.println(url.getPath()); //System.out.println(url.toString()); Properties p = new Properties(); p.setProperty("lastTime", "2016-5-27 9:15:56"); OutputStream os = new FileOutputStream(url.getPath()); p.store(os, "little"); } }
package com.rd.svn; import java.text.DateFormat; import java.text.ParseException; import java.text.SimpleDateFormat; import java.util.ArrayList; import java.util.Date; import java.util.List; import org.tmatesoft.svn.core.*; import org.tmatesoft.svn.core.auth.ISVNAuthenticationManager; import org.tmatesoft.svn.core.internal.io.dav.DAVRepositoryFactory; import org.tmatesoft.svn.core.io.SVNRepository; import org.tmatesoft.svn.core.wc.SVNWCUtil; /** * 日志查询类 * @author lwp * */ public class SVNLog { private String url; private String username; private String password; private SVNRepository repository; public SVNLog(String url, String username, String password) throws SVNException { this.url = url; this.username = username; this.password = password; // 版本库初始化 DAVRepositoryFactory.setup(); repository = DAVRepositoryFactory.create(SVNURL.parseURIEncoded(url)); ISVNAuthenticationManager authManager = SVNWCUtil .createDefaultAuthenticationManager(username, password); repository.setAuthenticationManager(authManager); } public List<SVNLogEntry> getSVNLogs(long startRevision, long endRevision) { try { // 存放结果 List<SVNLogEntry> logEntries = new ArrayList<SVNLogEntry>(); repository.log(new String[] { "/" }, logEntries, startRevision, endRevision, true, true); return logEntries; } catch (Exception ex) { System.out.println(ex.toString()); return null; } } public List<SVNLogEntry> getSVNLogs(long startRevision) { long lastRevision = 0; try { lastRevision = repository.getLatestRevision(); return getSVNLogs(startRevision,lastRevision); } catch (SVNException e) { e.printStackTrace(); return null; } } //获取今日提交记录 public List<SVNLogEntry> getSVNLogs() { long lastRevision = 0; long startRevision=0; DateFormat format = new SimpleDateFormat("yyyy-MM-dd"); try { Date today = format.parse(format.format(new Date(new Date().getTime()-24*60*60*1000))); startRevision = repository.getDatedRevision(today); //lastRevision = repository.getLatestRevision(); return getSVNLogs(startRevision,-1); } catch (SVNException e) { e.printStackTrace(); return null; } catch (ParseException e) { // TODO Auto-generated catch block e.printStackTrace(); return null; } } public static void main(String[] args) throws SVNException { String url = "svn://XX"; String username = "XX"; String password = "XX"; List<SVNLogEntry> logs = new SVNLog(url, username, password) .getSVNLogs(); for (SVNLogEntry log : logs) { System.out.println(log.getDate()); } } }
相关推荐
在这个小工具中,通过比较当前版本与上一个发布版本的文件,确定哪些是新增、修改或删除的文件,然后只打包这些文件。 4. **自动化发布流程**:自动化的发布过程减少了人为错误的可能性,提高了发布效率。这个工具...
首先,下载工具后,解压到任意文件夹下。接下来就得为该工具配置环境变量(其实不配也行,就是以后调用麻烦点就是了^@^),比如我将其解压到E盘的根目录下,那么就得在window的环境变量中的path中配置上路径:“E:\...
SVNKit 是一个基于 Java 语言的 Subversion 客户端库,提供了一个灵活的方式来访问 Subversion 版本控制系统。下面是 SVNKit 手册的详细介绍: SVN 快速入门 SVNKit 手册的第一部分是 SVN 快速入门,旨在帮助...
在压缩包中的"SVNKit(20160102)"可能是一个特定版本的SVNKit库,这个版本号表示该库是在2016年1月2日发布的。开发者需要根据自己的项目需求选择适合的SVNKit版本,因为不同的版本可能对某些功能的支持或性能有所不同...
SVNKit是一个强大的Java库,它实现了Subversion(SVN)客户端的功能,允许开发者在Java应用程序中集成版本控制系统。SVNKit提供了丰富的API,使得开发者能够执行诸如版本控制、提交、更新、比较、合并等SVN操作。在...
SVNKit是一个强大的Java库,它实现了Subversion(SVN)客户端功能,允许开发者在Java应用程序中集成版本控制系统。这个“svnkit帮助文档API”是一个离线版的资源,提供了详细的信息来帮助开发者理解和使用SVNKit库。...
SVNKit是一个全功能、高性能的Subversion客户端库,提供了一系列接口,使得开发者能够在Java应用中实现与SVN服务器的通信。它支持所有主要的SVN操作,包括版本控制、冲突解决、分支和合并等。 2. **检出(Checkout...
3. **版本号1.7.11**:这个版本号表明这是SVNKit的一个稳定发布,1.7系列是针对Subversion 1.7.x版本的API设计的。1.7.x版本的Subversion引入了一些重要的改进,如Working Copy格式的变化和性能优化。1.7.11可能是对...
SVNKit是一个开源的Java库,它为Java应用程序提供了对Subversion API的完整访问。由于是用Java编写,它可以在任何支持Java的平台上运行,包括Windows、Linux、Mac OS等。SVNKit不仅提供了命令行工具的功能,还支持...
SVNKit 1.7.9 是一个针对Subversion(SVN)的纯Java实现的库,它允许开发者在Java应用程序中直接集成版本控制系统的核心功能。这个版本的SVNKit是一个重要的更新,提供了对Subversion 1.7.x版本协议的支持,同时也...
总的来说,这个"svnkit-1.10.6"压缩包为Java开发者提供了一个强大且便捷的工具,能够使他们在不离开Java环境的情况下,充分利用SVN的强大功能。无论是小型项目还是大型企业级应用,都可以借助SVNKit实现高效的版本...
"SVNUtils.java"可能是一个包含了使用SVNkit进行版本控制操作的实用工具类,比如连接到SVN仓库、执行CRUD(创建、读取、更新、删除)操作等。这个类通常会封装一些常用的SVN操作,以便于在其他地方复用。而"svnNew....
使用类SVNRepository可以检查一个subversion仓库中是否存在制定的文件(SVNRepository.checkPath)、获取一个 ISVNEdirot向subversion仓库中commit(SVNRepository.getCommitEditor)等等。 PS: 有两个使用svnkit...
SVNKit是一个强大的Java库,它为Subversion(SVN)版本控制系统提供了全面的API支持。这个库使得开发者能够在Java应用程序中实现与SVN服务器的交互,包括版本控制操作、仓库浏览、信息获取等功能。本篇文章将深入...
你还在为svn打增量包发愁? svn 增量包工具类
SVNKit是一个强大的Java库,专门用于与Subversion(SVN)版本...总的来说,SVNKit 1.8.15是一个强大的工具,让Java开发者能够无缝地集成Subversion版本控制功能到他们的应用程序中,从而高效地管理源代码版本和协作。
SVNKit 是一个纯 Java 实现的 SVN 客户端库,允许开发者在 Java 应用程序中集成 SVN 功能,而无需依赖外部的 SVN 客户端工具。 描述中提到的操作包括: 1. **版本号对比**:在 SVN 中,每个文件和目录都有一个唯一...
SVNKit (JavaSVN) 是一个纯 Java 的 SVN 客户端库,使用 SVNKit 无需安装任何 SVN 的客户端,支持各种操作系统。 这不是一个开源的类库,但你可以免费使用。 通过SVNKit,你可以在SVN上开发出自己的应用
通过设置认证信息、日志记录器和其他配置,你可以创建一个`SVNClientManager`实例。例如: ```java SVNURL url = SVNURL.parseURIEncoded("http://svn.example.com/repos/project"); String username = "user"; ...