no message
This commit is contained in:
parent
864b4bfec8
commit
78895a1df1
|
@ -16,6 +16,7 @@ import org.apache.poi.openxml4j.exceptions.InvalidFormatException;
|
|||
import org.apache.poi.util.Units;
|
||||
import org.apache.poi.xwpf.usermodel.*;
|
||||
import org.json.JSONArray;
|
||||
import org.json.JSONException;
|
||||
import org.jsoup.Jsoup;
|
||||
import org.jsoup.nodes.Document;
|
||||
import org.openxmlformats.schemas.wordprocessingml.x2006.main.*;
|
||||
|
@ -378,15 +379,19 @@ public class WordBuilder {
|
|||
if((format == null || format.isEmpty()) || (attribute == null || attribute.isEmpty())){
|
||||
return null;
|
||||
}
|
||||
JSONArray array = new JSONArray(JavaToJson.objectStringToJson(format));
|
||||
StringBuilder multipleFormats = new StringBuilder();
|
||||
for (int i = 0; i < array.length(); i++) {
|
||||
multipleFormats.append(array.getJSONObject(i).getString(attribute)).append(", ");
|
||||
try {
|
||||
JSONArray array = new JSONArray(JavaToJson.objectStringToJson(format));
|
||||
StringBuilder multipleFormats = new StringBuilder();
|
||||
for (int i = 0; i < array.length(); i++) {
|
||||
multipleFormats.append(array.getJSONObject(i).getString(attribute)).append(", ");
|
||||
}
|
||||
if (multipleFormats.length() > 0) {
|
||||
multipleFormats.setLength(multipleFormats.length() - 2);
|
||||
}
|
||||
return multipleFormats.toString();
|
||||
} catch (JSONException e) {
|
||||
return format;
|
||||
}
|
||||
if (multipleFormats.length() > 0) {
|
||||
multipleFormats.setLength(multipleFormats.length() - 2);
|
||||
}
|
||||
return multipleFormats.toString();
|
||||
}
|
||||
|
||||
public XWPFParagraph addParagraphContent(Object content, XWPFDocument mainDocumentPart, ParagraphStyle style, BigInteger numId) {
|
||||
|
|
Loading…
Reference in New Issue