자바 로 hash 값 계산 하기
6156 단어 자바
얼마 전에 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();
}
}
}
이 내용에 흥미가 있습니까?
현재 기사가 여러분의 문제를 해결하지 못하는 경우 AI 엔진은 머신러닝 분석(스마트 모델이 방금 만들어져 부정확한 경우가 있을 수 있음)을 통해 가장 유사한 기사를 추천합니다:
Is Eclipse IDE dying?In 2014 the Eclipse IDE is the leading development environment for Java with a market share of approximately 65%. but ac...
텍스트를 자유롭게 공유하거나 복사할 수 있습니다.하지만 이 문서의 URL은 참조 URL로 남겨 두십시오.
CC BY-SA 2.5, CC BY-SA 3.0 및 CC BY-SA 4.0에 따라 라이센스가 부여됩니다.