摘要: public static String removeUTF8Signature(String strKey) throws IOException { String resultKey = strKey; int index = 0; DataInputStream dis=new DataInputStream(new ByteArrayInputStream(strKey.getBytes())); while(true) { int bb1 = dis.read(); int b... 阅读全文
posted @ 2013-12-02 17:32 Yak Wang 阅读(548) 评论(0) 推荐(0)