zoukankan      html  css  js  c++  java
  • 解密2.0版资源库的文件算法

    import java.io.File;
    import java.io.FileInputStream;
    import java.io.FileOutputStream;
     
    public class CopyFile {
        
        public static void DecodeRes2ByFile(File inFile) throws Exception
        {
            String m_strKey1 = "E5BCB9C350916554349299514FB2B8F8D6B6F38685A7D1971962BDD2F5E0CACDE944D93CA34D0874AB6807F3BD60571A2FAAC7DA2E282324C105F4F23C575810F324E80BE542462782BADE04889A57C0C599911C6E652E6CD5BFD7FF3E6B782E10798621F04D98606B73BAA3F4AE20DEE196851AD1DE44994D108E9F90F0483";
            String m_strKey2 = "1F4057E499C8143031D80E7C3305F74A0AE2BBB1EE77AEB61788883C18E94FCE6DB1176D5B8C3F8345953CFBA30D0503C1924CC48EF4B9530E0FA68900C09E705026F5EC9EDAAF8D69249CFFC303982734976FF92A515DA58B3261B70303D82D63153ACEE65BC9DA2EF09B55F6D24DE9E1276F4D9E574E018D3B2BA4F9520856";
    
            int key1Len = m_strKey1.length();
            int key2Len = m_strKey2.length();
                           
            File tmp_dir=new File("c:\temp");
            if(!tmp_dir.exists())
            {
                tmp_dir.mkdir();
            }
            
            String targetFile=tmp_dir+"\"+inFile.getName();
            File out = new File(targetFile);
            FileInputStream fin=new FileInputStream(inFile);
            FileOutputStream fout=new FileOutputStream(out);
         
            int length=2097152;//2m内存
            byte[] buffer=new byte[length];
             
            int     curLength = 0;
            while(true)
            {
                int ins=fin.read(buffer);
                
                
                if(ins==-1)
                {
                    fin.close();
                    fout.flush();
                    fout.close();
                    break;                 
                }
                else
                {
                    for(int i=0;i<ins;i++)
                    {
                        buffer[i]^=m_strKey1.substring(curLength%key1Len,curLength%key1Len+1).getBytes("UTF8")[0];
                        buffer[i]^=m_strKey2.substring(curLength%key2Len,curLength%key2Len+1).getBytes("UTF8")[0];
                        
                        curLength++;
                    }
                    fout.write(buffer,0,ins);
                }             
            }
            //删除原始文件
            inFile.delete();  
            //移动到原始文件
            out.renameTo(inFile);
        }
        
        /**
         * 功能:递归指定的目录,解密文件
         * 作者:黄海
         * 时间:2014-06-19
         * @param file
         * @throws Exception
         */
        public static void DecodeRes2ByPath(File file) throws Exception
        {
            if (file.isDirectory()) {
                File[] filearry = file.listFiles();
                for (File f : filearry) {
                    if (f.isDirectory()) 
                    {
                        System.out.println(f.getAbsoluteFile());
                    } 
                    else 
                    {
                         DecodeRes2ByFile(new File(f.getAbsolutePath()));
                         System.out.println("成功完成:"+f.getAbsolutePath());
                    }
                    
                    DecodeRes2ByPath(f);
                }
            }
        }
        static public void main(String args[]) throws Exception 
        {
                     
             //处理指定目录,将目录下递归所有文件,然后解密文件,单线程
             //File root = new File("C:\Old");
             //DecodeRes2ByPath(root);
                      
            
             //获取一组文件,准备要处理的文件.形成列表
             String filepath="C:\Old\image\200810";
             File f=new File(filepath);
             File flist[] = f.listFiles();
            
             
             //使用多线程对文件进行一个一个的处理,解决文件。
             ThreadPool threadPool = new ThreadPool(4); //创建一个有个4工作线程的线程池  
             Thread.sleep(400); //休眠400毫秒,以便让线程池中的工作线程全部运行  
             //运行任务  
             for (int i = 0; i <flist.length; i++) 
             { //创建N个任务  
                 threadPool.execute(DecodeFileMultiThread(flist[i]));  
             }  
             threadPool.waitFinish(); //等待所有任务执行完毕  
             threadPool.closePool(); //关闭线程池  
        }
        
        private static Runnable DecodeFileMultiThread(final File taskID) 
        {  
            return new Runnable() 
            {  
                public void run() 
                {
                    try 
                    {
                        DecodeRes2ByFile(taskID);
                    }
                    catch (Exception e) 
                    {
                        e.printStackTrace();
                    }
                }  
            };  
        }  
    }
    import java.util.LinkedList;
      
    /** 
     * @project LocationGateway 
     * @author sunnylocus    
     * @verson 1.0.0 
     * @date   Aug 2, 2008 
     * @jdk    1.4.2 
     */  
    public class ThreadPool extends ThreadGroup {  
        private boolean isClosed = false;  //线程池是否关闭   
        private LinkedList workQueue;      //工作队列  
        private static int threadPoolID = 1;  //线程池的id  
        public ThreadPool(int poolSize) {  //poolSize 表示线程池中的工作线程的数量  
      
            super(threadPoolID + "");      //指定ThreadGroup的名称  
            setDaemon(true);               //继承到的方法,设置是否守护线程池  
            workQueue = new LinkedList();  //创建工作队列  
            for(int i = 0; i < poolSize; i++) {  
                new WorkThread(i).start();   //创建并启动工作线程,线程池数量是多少就创建多少个工作线程  
            }  
        }  
          
        /** 向工作队列中加入一个新任务,由工作线程去执行该任务*/  
        public synchronized void execute(Runnable task) {  
            if(isClosed) {  
                throw new IllegalStateException();  
            }  
            if(task != null) {  
                workQueue.add(task);//向队列中加入一个任务  
                notify();           //唤醒一个正在getTask()方法中待任务的工作线程  
            }  
        }  
          
        /** 从工作队列中取出一个任务,工作线程会调用此方法*/  
        private synchronized Runnable getTask(int threadid) throws InterruptedException {  
            while(workQueue.size() == 0) {  
                if(isClosed) return null;  
                System.out.println("工作线程"+threadid+"等待任务...");  
                wait();             //如果工作队列中没有任务,就等待任务  
            }  
            System.out.println("工作线程"+threadid+"开始执行任务...");  
            return (Runnable) workQueue.removeFirst(); //反回队列中第一个元素,并从队列中删除  
        }  
          
        /** 关闭线程池 */  
        public synchronized void closePool() {  
            if(! isClosed) {  
                waitFinish();        //等待工作线程执行完毕  
                isClosed = true;  
                workQueue.clear();  //清空工作队列  
                interrupt();        //中断线程池中的所有的工作线程,此方法继承自ThreadGroup类  
            }  
        }  
          
        /** 等待工作线程把所有任务执行完毕*/  
        public void waitFinish() {  
            synchronized (this) {  
                isClosed = true;  
                notifyAll();            //唤醒所有还在getTask()方法中等待任务的工作线程  
            }  
            Thread[] threads = new Thread[activeCount()]; //activeCount() 返回该线程组中活动线程的估计值。  
            int count = enumerate(threads); //enumerate()方法继承自ThreadGroup类,根据活动线程的估计值获得线程组中当前所有活动的工作线程  
            for(int i =0; i < count; i++) { //等待所有工作线程结束  
                try {  
                    threads[i].join();  //等待工作线程结束  
                }catch(InterruptedException ex) {  
                    ex.printStackTrace();  
                }  
            }  
        }  
      
        /** 
         * 内部类,工作线程,负责从工作队列中取出任务,并执行 
         * @author sunnylocus 
         */  
        private class WorkThread extends Thread {  
            private int id;  
            public WorkThread(int id) {  
                //父类构造方法,将线程加入到当前ThreadPool线程组中  
                super(ThreadPool.this,id+"");  
                this.id =id;  
            }  
            public void run() {  
                while(! isInterrupted()) {  //isInterrupted()方法继承自Thread类,判断线程是否被中断  
                    Runnable task = null;  
                    try {  
                        task = getTask(id);     //取出任务  
                    }catch(InterruptedException ex) {  
                        ex.printStackTrace();  
                    }  
                    //如果getTask()返回null或者线程执行getTask()时被中断,则结束此线程  
                    if(task == null) return;  
                      
                    try {  
                        task.run();  //运行任务  
                    }catch(Throwable t) {  
                        t.printStackTrace();  
                    }  
                }//  end while  
            }//  end run  
        }// end workThread  
    } 
    
    
    
     
  • 相关阅读:
    VUE ElementUI Tree JAVA Mybatis实现 麦克斯
    VUE 创建工程 项目 麦克斯
    Go——关于Time包
    etcd——是什么做什么如何用
    php——composer安装与使用
    TinyXml——Linux下TinyXml的编译
    Mac下eclipse安装 lombok 插件
    gitlab——搭建私有gitlab服务
    apachehttpd——Linux/Mac源码安装apachehttpd
    mongo——通过docker查看mongo集群的状态和数据
  • 原文地址:https://www.cnblogs.com/littlehb/p/3736613.html
Copyright © 2011-2022 走看看