자바 로 hash 값 계산 하기

6156 단어 자바
자바 로 hashcode 계산 하기
얼마 전에 hive 분 통 원 리 를 공유 할 때 hive 는 hashcode 를 이용 하여 데 이 터 를 서로 다른 통 에 저장 하 는 것 을 설명 해 야 합 니 다.프레젠테이션 을 편리 하 게 하기 위해 hive 표 까지 직접 조작 하여 hash 값 을 계산 하려 고 했 지만 저 는 로 컬 로 hive 를 연결 할 수 있 는 권한 이 없 기 때문에 my sql 도 원리 가 많 지 않 습 니 다.중점 은 hashcode 의 계산 입 니 다.그래서 나 는 my sql 에 hive 표 와 구조 가 같은 시 계 를 만들어 이 시 계 를 직접 조작 했다.
hashcode 를 계산 하 는 자바 코드 는 다음 과 같 습 니 다.
package mysqlConnection;
import java.sql.*;

public class mysqlcon {
	public static void main(String[] args) throws Exception {
		Class.forName("com.mysql.jdbc.Driver");
		Connection conn = DriverManager.getConnection("jdbc:mysql://IP:3306/test", "hive", "hive");
		if(!conn.isClosed()) {
			System.out.println("connection success!");
		}

		Statement stat = conn.createStatement();
		ResultSet res = stat.executeQuery("select * from test_hash");
		while(res.next()) {
			int idValue = res.getInt(1);
			//System.out.println(node);
			String field = res.getString("id");
			int hashcode = field.hashCode();
			System.out.println(idValue + "_hashcode:" + hashcode);
		}
		if(conn != null && !conn.isClosed()) {
		res.close();
		conn.close();
		}
	}
}

좋은 웹페이지 즐겨찾기