1.sha256哈希加密
1.1利用 java.security.MessageDigest 调用已经集成的 Hash 算法
<%@ page import="java.security.MessageDigest" %>
<%@ page import="java.security.NoSuchAlgorithmException" %>
strText = serialnum+genotype+result_type+salt;
//out.println("<br/>"+strText);
try{
// SHA 加密开始
// 创建加密对象 并傳入加密類型
MessageDigest messageDigest = MessageDigest.getInstance("SHA-256");
// 传入要加密的字符串
messageDigest.update(strText.getBytes());
// 得到 byte 類型结果
byte byteBuffer[] = messageDigest.digest();
// 將 byte 轉換爲 string
StringBuffer strHexString = new StringBuffer();
// 遍歷 byte buffer
for (int l = 0; l < byteBuffer.length; l++){
String hex = Integer.toHexString(0xff & byteBuffer[l]);
if (hex.length() == 1){
strHexString.append('0');
}
strHexString.append(hex);
}
// 得到返回結果
token = strHexString.toString();
}catch (NoSuchAlgorithmException e){
e.printStackTrace();
}
1.sha256哈希加密
1.1利用 java.security.MessageDigest 调用已经集成的 Hash 算法
<%@ page import="java.security.MessageDigest" %>
<%@ page import="java.security.NoSuchAlgorithmException" %>
strText = serialnum+genotype+result_type+salt;
//out.println("<br/>"+strText);
try{
// SHA 加密开始
// 创建加密对象 并傳入加密類型
MessageDigest messageDigest = MessageDigest.getInstance("SHA-256");
// 传入要加密的字符串
messageDigest.update(strText.getBytes());
// 得到 byte 類型结果
byte byteBuffer[] = messageDigest.digest();
// 將 byte 轉換爲 string
StringBuffer strHexString = new StringBuffer();
// 遍歷 byte buffer
for (int l = 0; l < byteBuffer.length; l++){
String hex = Integer.toHexString(0xff & byteBuffer[l]);
if (hex.length() == 1){
strHexString.append('0');
}
strHexString.append(hex);
}
// 得到返回結果
token = strHexString.toString();
}catch (NoSuchAlgorithmException e){
e.printStackTrace();
}
参考链接:JAVA 的 SHA-256 和 SHA-512 两种 Hash 算法的调用
1.2使用apache的commons-codec库来做
<%@ page import="org.apache.commons.codec.digest.DigestUtils" %>
<%@ page import="org.apache.commons.codec.binary.Hex" %>
String text = "123456123456";
MessageDigest digest;
try {
digest = MessageDigest.getInstance("SHA-256");
byte[] hash = digest.digest(text.getBytes("UTF-8"));
String output = Hex.encodeHexString(hash);
System.out.println(output);
} catch (NoSuchAlgorithmException e) {
// TODO Auto-generated catch block
e.printStackTrace();
}catch (UnsupportedEncodingException e) {
// TODO Auto-generated catch block
e.printStackTrace();
}
参考链接:使用apache的commons-codec库进行SHA256哈希
2.使用httpclient发送post请求
需要导入的包:common-httpclient,common-logging,common-codec
<%@ page import="org.apache.commons.httpclient.*" %>
<%@ page import="org.apache.commons.httpclient.methods.PostMethod" %>
<%@ page import="org.apache.commons.httpclient.params.HttpMethodParams" %>
//第一步:创建HttpClient对象
HttpClient httpClient = new HttpClient();
String url = "http://testcms.ihbaby.com/gene/result.do";
//out.println(url);
//第二步:生成使用POST方法的请求对象,参数是访问的服务器地址
PostMethod postMethod = new PostMethod(url);
//NameValuePair对象代表了一个需要发往服务器的键值对
NameValuePair[] data = new NameValuePair[4];
data[0] = new NameValuePair("serialnum", serialnum);
data[1] = new NameValuePair("genotype", genotype);
data[2] = new NameValuePair("result_type", result_type);
data[3] = new NameValuePair("token", token);
// 将表单的值放入postMethod中
postMethod.setRequestBody(data);
// 执行postMethod
int statusCode = httpClient.executeMethod(postMethod);
//out.println("<br/>"+data[3].toString());
//out.println("<br/>"+statusCode);
//out.println("<br/>"+postMethod.getResponseBodyAsString());
参考链接:HttpClient入门
3.java处理json字符串
使用postMethod.getResponseBodyAsString()得到的相应消息如下:
{
"result": {
"status": 0,
"msg": null,
"data": null,
"msgMap": null
}
}
比较简单的方法是使用org.json库
<%@ page import="org.json.JSONObject" %>
JSONObject datajson = new JSONObject(postMethod.getResponseBodyAsString());
status = datajson.getJSONObject("result").getString("status");
//out.println("<br/>"+status);