基本信息
源码名称:Android Gamex木马分析报告
源码大小:0.60M
文件格式:.rar
开发语言:Java
更新时间:2015-09-07
友情提示:(无需注册或充值,赞助后即可获取资源下载链接)
嘿,亲!知识可是无价之宝呢,但咱这精心整理的资料也耗费了不少心血呀。小小地破费一下,绝对物超所值哦!如有下载和支付问题,请联系我们QQ(微信同号):813200300
本次赞助数额为: 2 元×
微信扫码支付:2 元
×
请留下您的邮箱,我们将在2小时内将文件发到您的邮箱
源码介绍
public class decrypt { private static String str= "00,,4171,601,6711611031192,81,,84188,40,,8845,1531,919,,11,,11,109,70,,607,,10,,5571,5851,111,80,102,,809,,51211011,24120,115,154911451,116,,607,,15170,41,,65130,91,,20,,11,,001,916,,77451"; public static String c(String s) { byte abyte0[]; int i, j; abyte0 = s.getBytes(); for ( i = 0, j = s.length() /2; i < j; i = 2 ){ byte byte0 = abyte0[i]; //从前往后取字 int l = (s.length() -1) - i; //从后往前取字 byte byte1 = abyte0[l]; abyte0[i] = byte1; //将后面的字写到前面 abyte0[l] = byte0; //将前面的字写到后面 } String as[]; String sss = new String(abyte0); as = (new String(abyte0)).split(","); String s1 = ""; for ( i = 0; i < as.length; i = 2){ String s2 = String.valueOf(s1); StringBuilder stringbuilder = new StringBuilder(s2); char c1 = (char)Integer.parseInt(as[i]); s1 = stringbuilder.append(c1).toString(); } return s1; } public static void main(String args[]){ System.out.println(c(str)); } }