首页 诗词 字典 板报 句子 名言 友答 励志 学校 网站地图
当前位置: 首页 > 教程频道 > 开发语言 > 编程 >

java资料加密解密

2012-08-24 
java文件加密解密import java.io.Fileimport java.io.FileInputStreamimport java.io.FileOutputStream

java文件加密解密
import java.io.File;
import java.io.FileInputStream;
import java.io.FileOutputStream;
/**
* 加密解密类
*
* @author shaohl
* @version 1.00
*/
public class EncryptGen {
// static boolean debug =false ;
// 加密KEY不能随便改动
static final byte[] KEYVALUE = "6^)(9-p35@%3#4S!4S0)$Y%%^&5(j.&^&o(*0)$Y%!#O@*GpG@=+@j.&6^)(0-=+"
   .getBytes();
static final int BUFFERLEN = 512;
public EncryptGen() {
}
/**
  * 对文件进行加密
  *
  * @param String
  *            oldFile 原始要加密的文件
  * @param String
  *            newFile 加密后的文件
  * @return
  */
public static void encryptFile(String oldFile, String newFile)
   throws Exception {
  FileInputStream in = new FileInputStream(oldFile);
  File file = new File(newFile);
  if (!file.exists())
   file.createNewFile();
  FileOutputStream out = new FileOutputStream(file);
  int c, pos, keylen;
  pos = 0;
  keylen = KEYVALUE.length;
  byte buffer[] = new byte[BUFFERLEN];
  while ((c = in.read(buffer)) != -1) {
   for (int i = 0; i < c; i++) {
    buffer[i] ^= KEYVALUE[pos];
    out.write(buffer[i]);
    pos++;
    if (pos == keylen)
     pos = 0;
   }
  }
  in.close();
  out.close();
}
/**
  * 对文件进行解密
  *
  * @param String
  *            oldFile 原始要解密的文件
  * @param String
  *            newFile 解密后的文件
  * @return
  */
public static void decryptFile(String oldFile, String newFile)
   throws Exception {
  FileInputStream in = new FileInputStream(oldFile);
  File file = new File(newFile);
  if (!file.exists())
   file.createNewFile();
  FileOutputStream out = new FileOutputStream(file);
  int c, pos, keylen;
  pos = 0;
  keylen = KEYVALUE.length;
  byte buffer[] = new byte[BUFFERLEN];
  while ((c = in.read(buffer)) != -1) {
   for (int i = 0; i < c; i++) {
    buffer[i] ^= KEYVALUE[pos];
    out.write(buffer[i]);
    pos++;
    if (pos == keylen)
     pos = 0;
   }
  }
  in.close();
  out.close();
}
/**
  * @param args
  */
public static void main(String[] args) {
  // TODO Auto-generated method stub
  try {
   // debug =false ;
   String oldFile = new String("C:\\aaa\\aa.txt");
   String newFile = new String("C:\\aaa\\aa_en.txt");
   encryptFile(oldFile, newFile);
     System.out.println("ok");
  } catch (Exception e) {
   e.printStackTrace();
  }
}
}

热点排行