for (String key : keys) {
Item currItem = getFirstItem(key);
if (currItem.getMIMEEntity() == null) {
jw.outProperty(key, currItem.getText());
} else {
String abstractedText = currItem.abstractText(0, false, false);
if (null == abstractedText) {
jw.outProperty(key, "**MIME ITEM, VALUE CANNOT BE DECODED TO JSON**");
} else {
jw.outProperty(key, abstractedText);
}