Here you can find the source of convertNullToString(final String str)
public static String convertNullToString(final String str)
//package com.java2s; //License from project: Apache License public class Main { public static String convertNullToString(final String str) { if (str == null) { return ""; } else {// w w w. j av a2 s .c om final int len = str.length(); for (int i = 0; i < len; i++) { if (str.charAt(i) != ' ') break; } return str.trim(); } } }