PHP的代码

<?php
$str = 'apple';
if (md5($str) === '1f3870be274f6c49b3e31a0c6728957f') {
    echo "Would you like a green or red apple?<br/>";
}
echo md5("7654123")
?>

Android 代码

public static String md5(String string) {
    byte[] hash;
    try {
        hash = MessageDigest.getInstance("MD5").digest(string.getBytes("UTF-8"));
    } catch (NoSuchAlgorithmException e) {
        throw new RuntimeException("Huh, MD5 should be supported?", e);
    } catch (UnsupportedEncodingException e) {
        throw new RuntimeException("Huh, UTF-8 should be supported?", e);
    }
    StringBuilder hex = new StringBuilder(hash.length * 2);
    for (byte b : hash) {
        if ((b & 0xFF) < 0x10) hex.append("0");
        hex.append(Integer.toHexString(b & 0xFF));
    }
    return hex.toString();
}

参考资料:

http://php.net/manual/en/function.md5.php

http://stackoverflow.com/questions/5494447/what-will-be-the-android-java-equivalent-of-md5-function-in-php

更多相关文章

  1. Android(安卓)顶部状态栏覆盖到应用之上?
  2. 开发安卓-android使用webview加载网页无法使用js的问题
  3. Android(安卓)-- isInEditMode
  4. Android学习——在线查看android源代码的3种方式
  5. android SDK4.0源代码下载
  6. Android(安卓)kernel下载编译方法
  7. Android微信分享---点击分享伤害了我且一闪而过~
  8. Android(安卓)setbackgroundcolor()方法的使用
  9. android studio 配置ffmpeg

随机推荐

  1. Android中结合OrmLite for android组件对
  2. Android高手进阶教程(四)之----Android(
  3. Android(安卓)JS桥交互("Uncaught Referen
  4. Android使用相机获取照片并显示的代码
  5. Android可视化调试工具Hierarchy Viewer
  6. Android——Scroll分析
  7. 访问接口,ios可以Android却不可以要么超时
  8. Android(安卓)手机:自由的代价
  9. 《android framework常用api源码分析》之
  10. 重看android(二) android启动