Here you can find the source of FNVHash(String str)
public static long FNVHash(String str)
//package com.java2s; //License from project: Apache License public class Main { public static long FNVHash(String str) { long fnv_prime = 0x811C9DC5; long hash = 0; for (int i = 0; i < str.length(); i++) { hash *= fnv_prime;/*from ww w . j a v a2s . c o m*/ hash ^= str.charAt(i); } return hash; } }