- 浏览: 22089 次
- 性别:
- 来自: 北京
最近访客 更多访客>>
文章分类
最新评论
-
caiceclb:
正在痛苦的研究ldap中...路过。。多谢你的资料
另外:l ...
JLDAP 连接池的创建及测试程序。 -
Ethip:
考过,不管成败,不会再参加这类考试啦!
参加过国家软考同志们,给点建议 -
anchor:
给你介绍个网站 www.csai.cn 可能你也听说过
...
参加过国家软考同志们,给点建议 -
qingyuan914:
javascript 那肯定是经常用的,做web开发的那还用提 ...
在北京的做java行情俺真的不了解 -
cjyzpcl:
BirdGu 写道引用经常用jsp、servlet、strut ...
在北京的做java行情俺真的不了解
今天由于服务器配置管理那边需要一个批处理程序,需要实现的功能是: 能把本地的任意目录的子文件及子文件夹拷贝到指定的目标目录生成的350个文件夹当中去.350个文件夹也是动态生成的,象征性的用user1、user2、user3.......user350.
我是用多线程去实现的,每一个线程完成一份拷贝,那么就的new一个继承了Thread类的数组,数组的大小是350,这个类的run方法去调用要实现拷贝功能类的方法。值得一提的是这个线程类的350个实例都有自己的属性,并且这个类是immutable的。
那么好,我们来看看这个immutable类:
java 代码
- import java.io.File;
- class SimulateThread extends Thread
- {
- File root = null; //要拷贝的文件目录。
- String folder = null; //用来做user1、user2、.....的文件夹名称。
- File toFile=null; //目标目录。
- public SimulateThread(ThreadGroup threadgroup, File file,File toFile, String string) { //用构造函数给属性负值
- super(threadgroup, string);
- ((SimulateThread) this).root = file;
- ((SimulateThread) this).toFile=toFile;
- ((SimulateThread) this).folder = string;
- }
- public synchronized void start() {
- super.start();
- }
- public void run() {
- super.run();
- try {
- System.out.println(new StringBuilder().append
- (((SimulateThread) this).folder).append
- (" Executing...").toString());
- FileConverter.convertMultiFiles(((SimulateThread) this).root,((SimulateThread) this).toFile,
- ((SimulateThread) this).folder,
- "EUC-KR", "UTF-8");//调用用来生成的文件的方法,并把字符转换的编码格式传入,这里是把EUC-KR转为UTF-8
- System.out.println(new StringBuilder().append
- (((SimulateThread) this).folder).append
- (" Done.").toString());
- } catch (Exception exception) {
- exception.printStackTrace();
- }
- }
- }
哦,对了,看到StringBuilder这个东东,我的说一下编译及运行环境,必须是jdk5.0以上的版本才行,它是新类。说句题外话,C#里边也有这个东西,不知道是java借鉴C#呢,还是C#借鉴java的呢,对了还有泛型。反正这种情况的出现是一种好兆头。
言归正传,我们来看看FileConverter类,也是程序的主类,程序的入口在它这边
java 代码
- import java.io.BufferedReader;
- import java.io.File;
- import java.io.FileInputStream;
- import java.io.FileOutputStream;
- import java.io.IOException;
- import java.io.InputStreamReader;
- import java.io.OutputStreamWriter;
- import java.util.HashMap;
- import java.util.Iterator;
- import java.util.Vector;
- public class FileConverter {
- public static final int BUFFER_SIZE = 1024;
- public static final int EOF = -1;
- public static final int EOL = -1;
- public static final String BACK_SLASH = "\\";
- public static final String REG_BACK_SLASH = "\\\\";
- public static final String NEW_LINE_WINDOWS = "\r\n";
- public static final String NEW_LINE_UNIX = "\n";
- public static final String NEW_LINE_MACOS = "\r";
- public static OutputStreamWriter writer = null;
- public static final int SIMULATE_COUNT = 30;
- public static final String DEFAULT_FROM_ENCODING = "EUC-KR";
- public static final String DEFAULT_TO_ENCODING = "UTF-8";
- public static final String DEFAULT_SOURCE_PATH = "C:\\TEMP";
- private String from = "EUC-KR";
- private String to = "UTF-8";
- private String path = "C:\\TEMP";
- private String topath="C:\\TEMP1";
- public String getTopath() {
- return topath;
- }
- public void setTopath(String topath) {
- this.topath = topath;
- }
- public String getFrom() {
- return from;
- }
- public void setFrom(String string) {
- from = string;
- }
- public String getTo() {
- return to;
- }
- public void setTo(String string) {
- to = string;
- }
- public String getPath() {
- return path;
- }
- public void setPath(String string) {
- path = string;
- }
- public static void convertFile(String string, String string_0_,
- String string_1_, String string_2_) throws Exception { //实现单个文件的拷贝
- InputStreamReader inputstreamreader = new InputStreamReader(
- new FileInputStream(string), string_0_);
- File file = new File(string_1_);
- if (!file.getParentFile().exists())
- file.getParentFile().mkdirs();
- if (!file.exists())
- file.createNewFile();
- OutputStreamWriter outputstreamwriter = new OutputStreamWriter(
- new FileOutputStream(string_1_), string_2_);
- char[] cs = new char[1024];
- int i = -1;
- while ((i = inputstreamreader.read(cs)) != -1) {
- outputstreamwriter.write(cs, 0, i);
- outputstreamwriter.flush();
- }
- outputstreamwriter.close();
- }
- public static void listFiles(File file,
- OutputStreamWriter outputstreamwriter) throws Exception {
- if (file.isDirectory() && file.listFiles() != null) {
- File[] files = file.listFiles();
- for (int i = 0; i < files.length; i++) {
- File file_3_ = new File(files[i].getAbsolutePath());
- if (file_3_.isDirectory())
- listFiles(file_3_, outputstreamwriter);
- else if (file_3_.isFile()) {
- outputstreamwriter.write(new StringBuilder().append(
- file_3_.getAbsolutePath()).append("\r\n")
- .toString());
- outputstreamwriter.flush();
- } else
- System.out.println("What's this?");
- }
- }
- }
- public static Vector listSubFile(File file) throws Exception { //遍历源文件的目录及字文件夹,这种遍历本来可以写一个Composite Pattern来实现,时间比较紧,我就没做
- Vector vector = new Vector();
- if (file.isDirectory() && file.listFiles() != null) {
- File[] files = file.listFiles();
- for (int i = 0; i < files.length; i++) {
- File file_4_ = new File(files[i].getAbsolutePath());
- if (file_4_.isDirectory())
- vector.addAll(listSubFile(file_4_));
- else if (file_4_.isFile())
- vector.add(file_4_.getAbsolutePath());
- else
- System.out.println("What's this?");
- }
- }
- return vector;
- }
- public static HashMap restoreFiles(File file,File toFile, String string)
- throws Exception { //把源文件的目录作为key值,把目标目录+useri+以后文件目录或文件的名字做为value放到HashMap中
- HashMap hashmap = new HashMap();
- Vector vector = listSubFile(file);
- Iterator iterator = vector.iterator();
- while (iterator.hasNext()) {
- String string_5_ = (String) iterator.next();
- String string_6_ = doubleBackSlash(file.getAbsolutePath());
- String string_7_ = doubleBackSlash(toFile.getAbsolutePath());
- string_7_ = string_7_.concat("\\\\").concat(string);
- hashmap
- .put(string_5_, string_5_
- .replaceFirst(string_6_, string_7_));
- }
- return hashmap;
- }
- public static void convertMultiFiles(File file, File toFile,String string,
- String string_8_, String string_9_) throws Exception { //执行拷贝了
- HashMap hashmap = restoreFiles(file,toFile,string);
- Iterator iterator = hashmap.keySet().iterator();
- while (iterator.hasNext()) {
- String string_10_ = (String) iterator.next();
- convertFile(string_10_, string_8_,
- (String) hashmap.get(string_10_), string_9_);
- }
- }
- public static void setWriter() throws Exception {
- writer = new OutputStreamWriter(new FileOutputStream(
- "D:\\temp.tree.txt"), "GBK");
- }
- public static void closeWriter() throws Exception {
- writer.close();
- }
- public static String doubleBackSlash(String string) {
- StringBuffer stringbuffer = new StringBuffer(string);
- int i = -1;
- while ((i = stringbuffer.indexOf("\\", ++i)) != -1)
- stringbuffer.insert(++i, "\\");
- return stringbuffer.toString();
- }
- public static boolean checkCRLF(String string, String string_11_) {
- boolean bool = false;
- if (string != null && string.length() >= string_11_.length()
- && string.lastIndexOf(string_11_) != -1)
- bool = true;
- return bool;
- }
- public static String trailingTrim(String string, String string_12_) {
- if (string != null && string.length() >= string_12_.length())
- string = string.substring(0, string.indexOf(string_12_));
- return string;
- }
- public FileConverter() {
- path = "C:\\TEMP";
- }
- public void inputPath() {//获取System.in的输入,去掉回车符,并把要copy的目录与目标目录用空格分开
- String s = "";
- InputStreamReader inputstreamreader = new InputStreamReader(System.in);
- BufferedReader bufferedreader = new BufferedReader(inputstreamreader);
- System.out.println("Unix: ctrl-d or ctrl-c to exit.\nWindows:Type ctrl-z or ctrl-c to exit.\nPlease " +
- "input source path:"
- );
- try
- {
- int i = bufferedreader.read();
- do
- {
- s = (new StringBuilder()).append(s).append((char)i).toString();
- if(i == 10 && checkCRLF(s, "\r\n"))
- {
- s = trailingTrim(s, "\r\n");
- if(s.length() == 0)
- {
- System.out.print("The default path: C:\\temp will be used for source path.");
- }
- break;
- }
- i = bufferedreader.read();
- } while(true);
- System.out.println((new StringBuilder()).append("Read: ").append(s).toString());
- bufferedreader.close();
- }
- catch(IOException ioexception)
- {
- ioexception.printStackTrace();
- }
- String[] temp=s.split(" ");
- setPath(temp[0]);//set copy的目录
- this.setTopath(temp[1]);//set 目标目录
- File toFile=new File(topath);
- toFile.mkdir();//生成目标目录。
- }
- public void start() throws Exception {
- inputPath();
- String[] strings = new String[350];
- for (int i = 0; i < strings.length; i++)
- strings[i] = new StringBuilder().append("user").append(i + 1)
- .toString();
- File file = new File(path);
- File toFile=new File(topath);
- ThreadGroup threadgroup = new ThreadGroup("APP TEST");
- Thread[] threads = new Thread[350];
- for (int i = 0; i < threads.length; i++) {//生成350个SimulateThread对象并把在目标目录生成的文件夹的名称也作为参数
- threads[i] = new SimulateThread(threadgroup, file,toFile, strings[i]);
- threads[i].start();
- }
- for (;;) {
- int i = threadgroup.activeCount();
- if (i <= 0)
- break;
- Thread.sleep(500L);
- }
- System.out.println("Done.");
- }
- public static void main(String[] strings) throws Exception {
- new FileConverter().start();//创建一个FileConverter对象并且调用它的start方法
- }
- }
好了,破于时间注释也不多写了,以上的代码大多都能看懂,俺也不多说了.
可以把他们的class文件打成jar文件,在 manifest.MF 写上Main-Class: FileConverter再写一个批处理run.bat
java -jar jar包名
噢了。。。。。。。。。。。。。。。。。。
相关推荐
在“copy_files.zip”这个压缩包中,我们看到的是一个使用线程池来实现文件目录拷贝的程序。下面我们将深入探讨线程池的概念、其工作原理,以及如何应用于文件操作,特别是文件目录的拷贝。 1. **线程池概念**: ...
在我们的文件拷贝场景中,`QDirIterator`将特别有用,因为它可以迭代指定目录及其子目录中的所有文件和子目录。 在开始复制文件之前,我们需要创建一个`QThread`对象,这是Qt中的多线程基础。通过继承`QThread`,...
- **拷贝文件/目录**:调用`boolean rename(Path src, Path dst)`,实现文件或目录的重命名(相当于拷贝并删除源文件)。 - **获取文件属性**:使用`FileStatus getFileStatus(Path f)`获取文件或目录的元数据信息。...
Java实现文件拷贝的小程序 本资源是一个使用Java语言实现文件拷贝的小程序,具有很实用的功能。下面是对这个小程序的详细解释和知识点总结: 文件拷贝的基本概念 文件拷贝是将一个文件的内容复制到另一个文件中,...
2.实现文件的拷贝与粘贴功能。3.实现文本类文件(.txt, .java, .ini, .bat, )的预览功能(比如实现对前100行文本在某个小窗口中进行预览)。4.实现文件的重命名功能。5.实现对某个文件夹进行统计功能(如统计文件夹中...
这可以通过在`CopyFilesAsync`方法中添加回调函数实现,每当文件拷贝完成时调用这个回调: ```csharp public async Task CopyFilesAsync(string[] fileNames, string destinationDirectory, Action<int> ...
拷贝文件在FTP类中可能通过自定义方法实现,如`copy_file()`,它会打开两个FTP流,分别读取源文件并写入目标文件。`delete_file()`方法则用于删除指定的远程文件。 最后,完成所有操作后,使用`close()`方法断开与...
### Linux下C语言实现文件拷贝 #### 一、引言 在计算机编程领域,特别是在系统级编程中,文件操作是非常基础且重要的功能之一。在Linux环境下,利用C语言进行文件操作具有高度的灵活性和效率。本文将详细介绍如何在...
`os`模块提供了许多与操作系统交互的功能,包括创建、删除、重命名文件或目录,而`shutil`模块则提供了更高级的文件操作,如复制和移动文件及目录。 2. **os模块** - `os.path`: 这个子模块包含了各种路径操作函数...
为了实现文件的拷贝,我们需要打开源文件,读取其内容,然后将内容写入目标文件。同时,需要考虑错误处理,例如文件不存在、权限不足等情况。 并发控制是线程池拷贝目录时的另一个关键点。由于多个线程可能同时尝试...
### VC实现文件夹从一个目录下拷贝到另一个目录 #### 概述 在软件开发过程中,经常需要处理文件及文件夹的操作,如复制、移动等。本文将详细介绍如何使用Visual C++(简称VC)来实现文件夹从一个目录复制到另一个...
以下是一个示例代码片段,演示如何在WPF应用中实现文件拷贝: ```csharp using System; using System.IO; public void CopyConfigFile() { // 假设配置文件在项目的Resources子目录下,名为config.xml string ...
首先,将文件复制到U盘中,然后将U盘插入虚拟机的USB接口,虚拟机会识别并挂载这个U盘,此时在虚拟机内就能访问U盘中的文件,从而实现文件的拷贝。 2. **双向拷贝**: 双向拷贝是指允许主机和虚拟机之间自由地互相...
在本文中,我们将深入探讨如何使用Microsoft Foundation Class (MFC) 框架来实现一个文件浏览器,并且重点讲解如何在其中实现文件拷贝功能,同时利用多线程技术提高程序性能。MFC 是 Microsoft 提供的一个C++库,它...
在提到的“API接口练习”中,可能涉及到通过网络API来实现文件的远程复制。这通常需要调用HTTP或FTP等协议的客户端库。例如,对于HTTP,可以使用`HttpClient`类来发送POST请求,将文件作为流上传到服务器。在接收端...
1. **正确放置文件**:确保要运行的脚本或程序位于包含待拷贝文件的顶级目录下。这样,工具才能遍历该目录及其子目录。 2. **编辑name.txt**:在name.txt文件中,列出所有要拷贝的文件名,每行一个文件名。文件名应...
`WVCopyFile`组件就是为了解决这类问题而设计的,它提供了一个便捷的方式来实现文件和文件夹的高效、安全的拷贝。本篇文章将深入探讨`WVCopyFile`组件以及在Delphi中如何使用它。 `WVCopyFile`组件并非Delphi标准库...
在Linux集群中,`scp`命令是进行节点间文件拷贝的标准工具。 1. **从lu@datanode1登录到hadoop@datanode3并拷贝文件**: 在lu@datanode1上,可以使用以下命令将文件从datanode3拷贝到datanode1: ```bash scp ...
这个“Delphi实现局部图像拷贝.rar”压缩包可能包含了一个使用Delphi编写的示例项目,用于演示如何从图像中复制一个局部区域到另一个图像或剪贴板上。以下是对这一主题的详细解释: 1. **图像处理基础**:在Delphi...
一个关于文件操作的静态工具类 实现手机SD卡目录或文件的拷贝 移动 删除 递归 Demo中有详细注释 在进行Demo测试时 建议先把测试的文件备份一下在测试 否则删除就找不回了 具体可见我博客...实现手机SD卡目录或文件的...