易截截图软件、单文件、免安装、纯绿色、仅160KB

java 和 C# 通用加密解密

java 代码
package util;
import java.io.UnsupportedEncodingException;
import dao.socket.OperType;
public class Encrpt {
 private String key;
 public Encrpt() {
  this("sitow");
 }
 public Encrpt(String key) {
  this.key = key;
 }
 private final String[] reference = new String[] { "0a", "0b", "0c", "0d",
   "0e", "0f", "0g", "0h", "0i", "0j", "0k", "0l", "0m", "0n", "0o",
   "0p", "0q", "0r", "0s", "0t", "0u", "0v", "0w", "0x", "0y", "0z",
   "1a", "1b", "1c", "1d", "1e", "1f", "1g", "1h", "1i", "1j", "1k",
   "1l", "1m", "1n", "1o", "1p", "1q", "1r", "1s", "1t", "1u", "1v",
   "1w", "1x", "1y", "1z", "2a", "2b", "2c", "2d", "2e", "2f", "2g",
   "2h", "2i", "2j", "2k", "2l", "2m", "2n", "2o", "2p", "2q", "2r",
   "2s", "2t", "2u", "2v", "2w", "2x", "2y", "2z", "3a", "3b", "3c",
   "3d", "3e", "3f", "3g", "3h", "3i", "3j", "3k", "3l", "3m", "3n",
   "3o", "3p", "3q", "3r", "3s", "3t", "3u", "3v", "3w", "3x", "3y",
   "3z", "4a", "4b", "4c", "4d", "4e", "4f", "4g", "4h", "4i", "4j",
   "4k", "4l", "4m", "4n", "4o", "4p", "4q", "4r", "4s", "4t", "4u",
   "4v", "4w", "4x", "4y", "4z", "5a", "5b", "5c", "5d", "5e", "5f",
   "5g", "5h", "5i", "5j", "5k", "5l", "5m", "5n", "5o", "5p", "5q",
   "5r", "5s", "5t", "5u", "5v", "5w", "5x", "5y", "5z", "6a", "6b",
   "6c", "6d", "6e", "6f", "6g", "6h", "6i", "6j", "6k", "6l", "6m",
   "6n", "6o", "6p", "6q", "6r", "6s", "6t", "6u", "6v", "6w", "6x",
   "6y", "6z", "7a", "7b", "7c", "7d", "7e", "7f", "7g", "7h", "7i",
   "7j", "7k", "7l", "7m", "7n", "7o", "7p", "7q", "7r", "7s", "7t",
   "7u", "7v", "7w", "7x", "7y", "7z", "8a", "8b", "8c", "8d", "8e",
   


相关文档:

java中获得数组中最小的数

public static void main(String[] args)
{
Integer[] arrInt = new Integer[6];
arrInt[0] = 123;
arrInt[1] = 3453;
arrInt[2] = 345;
arrInt[3] = 23;
arrInt[4] = 11;
arrInt[5] = 345;

int temp = 0;
for (int i ......

Java分页(支持多种数据库)

最近研究了下分页,做个总结。
1)数据库操作类,做简单封装 DB.java
package Test;
import java.sql.*;
public class DB {
 
 // 加载驱动
    static {
        try {
            Class.f ......

Java语言如何访问不同字符集的Oracle数据

一、java访问中文Oracle数据库上连接的US7ASCII数据库
1、读方法
public String convertLink_DB(String s) {
  if(s != null){
   try{
    byte[] b = s.getBytes();
    for(int i=0; i<b.length; i++){
     b[i] ......

java递归实现汉诺塔

/*
 * 汉诺塔,从第1个柱子借助第2根柱子移动到第3根
 */
public class TowerOfHano {
 
    private int totle;//总共盘子数目
    public TowerOfHano(int totle){
       this.totle=totle;
    }
  &nb ......
© 2009 ej38.com All Rights Reserved. 关于E健网联系我们 | 站点地图 | 赣ICP备09004571号