摘要: public static int byte2int(byte b) { int i = b & 0x07f; if (b < 0) { i |= 0x80; } return i;}//运行代码function runEx(cod1) { cod=document.getElementById(cod1) var code=cod.value; if (code!=""){ var newwin=window.open('','',''); newwin.opener = null ... 阅读全文
posted @ 2014-03-04 16:03 jieyuefeng 阅读(214) 评论(0) 推荐(0)