菜鸟笔记
提升您的技术认知

Java object转string

public static createString(Object object ){

rerutn  object!=null?object.toString():””;

}