I would like to append double quotes to strings in an array and then later join them as a single string (retaining the quotes). Is there any String library which does this?
String output = "\"" + StringUtils.join(listOfStrings , "\",\"") + "\"";