Here you can find the source of underscore(String field)
public static String underscore(String field)
//package com.java2s; public class Main { public static String underscore(String field) { return field.replace(' ', '_').replace('.', '_'); }/*from www. j ava 2s. com*/ }