Here you can find the source of objToString(Object obj)
public static String objToString(Object obj)
//package com.java2s; //License from project: Open Source License public class Main { public static String objToString(Object obj) { String result = ""; try {// w ww.j a v a 2s. co m result = obj.toString(); } catch (Exception e) { result = null; } return result; } }