Fixed metadata storage
This commit is contained in:
parent
0a598de7ce
commit
d0d991c061
1 changed files with 14 additions and 18 deletions
|
@ -27,14 +27,11 @@ package w2phtml.xhtml.content;
|
|||
|
||||
import static w2phtml.office.XMLString.*;
|
||||
|
||||
import java.util.Hashtable;
|
||||
import java.util.Iterator;
|
||||
import java.util.Stack;
|
||||
import java.util.Set;
|
||||
|
||||
import org.w3c.dom.Node;
|
||||
import org.w3c.dom.NodeList;
|
||||
|
||||
import pro.litvinovg.xml.Debug;
|
||||
import w2phtml.office.FontDeclaration;
|
||||
import w2phtml.office.ListCounter;
|
||||
import w2phtml.office.ListStyle;
|
||||
|
@ -53,7 +50,6 @@ import w2phtml.xhtml.XhtmlConfig;
|
|||
import w2phtml.xhtml.XhtmlStyleMap;
|
||||
import w2phtml.xhtml.XhtmlStyleMapItem;
|
||||
|
||||
import org.hamcrest.core.IsEqual;
|
||||
import org.json.JSONException;
|
||||
import org.json.JSONObject;
|
||||
import org.w3c.dom.Document;
|
||||
|
@ -1508,24 +1504,24 @@ public class TextParser extends Parser {
|
|||
}
|
||||
|
||||
public void addJSONMetadata(String data) {
|
||||
Iterator<String> names = null;
|
||||
JSONObject json = null;
|
||||
try {
|
||||
json = new JSONObject(data);
|
||||
names = json.keys();
|
||||
} catch (JSONException e) {
|
||||
JSONObject json = new JSONObject(data);
|
||||
Set<String> nums = json.keySet();
|
||||
for (String number : nums) {
|
||||
JSONObject meta = (JSONObject) json.get(number);
|
||||
Set<String> names = meta.keySet();
|
||||
for (String name: names) {
|
||||
String value = meta.getString(name);
|
||||
writeMetadata(name, value);
|
||||
}
|
||||
}
|
||||
} catch (JSONException e) {
|
||||
e.printStackTrace();
|
||||
} catch (Exception e) {
|
||||
e.printStackTrace();
|
||||
}
|
||||
if (names == null || json == null) {
|
||||
return;
|
||||
}
|
||||
while (names.hasNext()) {
|
||||
String metaName = names.next();
|
||||
String metaValue = (String) json.get(metaName);
|
||||
writeMetadata(metaName, metaValue);
|
||||
}
|
||||
|
||||
|
||||
}
|
||||
|
||||
private void writeMetadata(String name, String value) {
|
||||
|
|
Loading…
Add table
Reference in a new issue