Here you can find the source of objectToString(Object obj)
public static String objectToString(Object obj)
//package com.java2s; public class Main { public static String objectToString(Object obj) { if (obj == null) { return ""; }/*from w ww.j ava2s . c o m*/ return String.valueOf(obj); } }