如何在java中實現php的md5加密

2020-08-12 12:00:15

在java中實現php的md5加密的方法:首先搭建好php的環境;然後寫一個通過提取get參數,並對值進行md5加密的頁面;最後在JAVA頁面進行提交。

在java中實現php的md5加密的方法:

1、搭建好php的環境(不作介紹),寫一個通過提取get參數,並對值進行md5加密的頁面,如下

  <?php echo strtoupper(md5($_GET["md5str"])); ?>
  • strtoupper是字母大寫轉換的函數

  • md5是MD5加密的函數

  • $_GET["md5str"]就是通過url帶一個md5str的參數,把值獲取並列印出來

相關學習推薦:(視訊)

2、JAVA頁面的提交方法

/**
* 用於做PHP的提交處理
* @param url
*/
public static String phpRequest(String url){
try{
HttpClient client = new HttpClient();
PostMethod post = new PostMethod(url);//使用POST方式提交數據
post.setRequestHeader("Content-Type","text/html; charset=UTF-8");
        client.executeMethod(post);
        String response = new String(post.getResponseBodyAsString().getBytes("8859_1"), "UTF-8");//列印結果頁面
        post.releaseConnection();
        return response;
} catch(IOException e){
e.printStackTrace();
return null;
}
}

需要提示的是,url記得先對中文參數進行一次UTF-8的編碼再傳到這個方法裏面,這個方法對響應的結果做了反編碼的處理,最後就能正確的返回php MD5加密後的值了!

相關學習推薦:

以上就是如何在java中實現php的md5加密的詳細內容,更多請關注php中文網其它相關文章!