user153465
0
Q:

how to convert an object into string with different fields in java

String convertedToString = String.valueOf(Object);  //method 1

String convertedToString = "" + Object;   //method 2

String convertedToString = Object.toString();  //method 3
0

New to Communities?

Join the community