還有幾個工具類

2022-02-20 15:02:46 字數 2113 閱讀 1498

**///

///反射類

//////

public

sealed

class

reflector

<

t>

where

t : 

class

//////

通過反射建立實體

//////

類的全名

///dllname

///是否從快取中讀取

///public

static

t create(

string

classfullname, 

string

dllname, 

bool

cacheflag)

}else

return

objtype;

}///

///建立assembly

//////

dllname

///public

static

assembly createassembly(

string

dllname)

return

obj;}}

public

class

cachemanage

//////

新增到快取

//////

///public

static

void

setcache(

string

objectkey, 

object

objobject)

}///

///加密

///public

class

aes;

public

static

string

encode(

string

encryptstring, 

string

encryptkey)

public

static

string

decode(

string

decryptstring, 

string

decryptkey)

catch

}public

static

string

encode(

string

encryptstring)

public

static

string

decode(

string

encryptstring)

}///

///加密

///public

class

des;

//////

des加密字串

//////

待加密的字串

///加密金鑰,要求為8位

///加密成功返回加密後的字串,失敗返回源串

public

static

string

encode(

string

encryptstring, 

string

encryptkey)

//////

des解密字串

//////

待解密的字串

///解密金鑰,要求為8位,和加密金鑰相同

///解密成功返回解密後的字串,失敗返源串

public

static

string

decode(

string

decryptstring, 

string

decryptkey)

catch

}public

static

string

encode(

string

encryptstring)

public

static

string

decode(

string

encryptstring)

前端開發的幾個輔助類工具

為了提高web 的效能,需要將指令碼用樣式檔案壓縮,即減少檔案的大小,將不必要的空格等去除,同時也可以將指令碼中的變數等進行混淆。yui compressor是值得推薦的壓縮工具,它的壓縮比大約為50 詳細資訊可以參考yahoo 開發者網路。在進行css sprites 樣式開發時,經常需要對pho...

mysql的幾個工具 MySQL幾個工具軟體的使用

一 mysqladmin.exe的使用 1.關閉mysql 假設root使用者的密碼為空值 在windows命令提示符下執行下面的命令 mysqladmin u root shutdown 2.使用mysqladmin為root賬戶指定密碼 假設密碼為123456 在windows命令提示符下執行下...

工具類 HexUtil 工具類

hexutil 源 如下 十六進製制處理工具類 public class hexutil param hex 需要轉換的16進製制字串 return 以位元組陣列返回轉換後的結果 public static byte hexstringtobyte string hex return result ...