Here you can find the source of underscoreSpaces(String str)
public static String underscoreSpaces(String str)
//package com.java2s; //License from project: Apache License public class Main { public static String underscoreSpaces(String str) { if (str == null) { return null; }/* w w w. j av a2 s. c o m*/ str = str.replace(" ", "_"); return str; } }