String[] arrStr = {"a", "b", "c"};
for convert into a format
'a','b','c'
use
String strJoin = String.join(",", arrStr);
String[] arrStr = {"a", "b", "c"};
for convert into a format
'a','b','c'
use
String strJoin = String.join(",", arrStr);