Here you can find the source of hashCode2(String str)
public static long hashCode2(String str)
//package com.java2s; //License from project: Apache License public class Main { public static long hashCode2(String str) { long h = 1125899906842597L; // prime int len = str.length(); for (int i = 0; i < len; i++) { h = 31 * h + str.charAt(i);//w ww. java2 s . co m } return h; } }