首页
社区
课程
招聘
第一题
发表于: 2015-1-23 17:26 1890

第一题

2015-1-23 17:26
1890
  private static void t1() {
    FileInputStream fs = null;
    String file = "logo.png";
    String strTable = "";
    String strPwd = "";
    try {
      fs = new FileInputStream(file);
      byte table[] = new byte[768];  
      fs.skip(89473);
      fs.read(table, 0, 768);
      fs.close();
      strTable = new String(table, "utf-8");
      
      fs = new FileInputStream(file);
      byte pwd[] = new byte[18];
      fs.skip(91265);
      fs.read(pwd, 0, 18);
      fs.close();    
      strPwd = new String(pwd, "utf-8");
      
      StringBuilder sb = new StringBuilder();
      for (int i = 0; i < strPwd.length(); i++) {
        char ch = (char)strTable.indexOf(strPwd.charAt(i));
        sb.append(ch);
      }  
      System.out.println(sb.toString());    
    } catch (Exception e) {
      e.printStackTrace();
    }
  }

[招生]科锐逆向工程师培训(2024年11月15日实地,远程教学同时开班, 第51期)

收藏
免费 0
支持
分享
最新回复 (0)
游客
登录 | 注册 方可回帖
返回
//