Here you can find the source of convertNull2ZeroString(String value)
protected static String convertNull2ZeroString(String value)
//package com.java2s; //License from project: Apache License public class Main { protected static String convertNull2ZeroString(String value) { if (value == null) { return ""; } else {/*from www . j ava 2 s . co m*/ return value; } } }