1.1 --- a/java/alt2xml-bin/src/cz/frantovo/alt2xml/vstup/SuperReader.java Thu Jun 05 14:45:15 2014 +0200
1.2 +++ b/java/alt2xml-bin/src/cz/frantovo/alt2xml/vstup/SuperReader.java Thu Jun 05 15:03:50 2014 +0200
1.3 @@ -4,8 +4,8 @@
1.4 import java.io.InputStreamReader;
1.5 import java.util.HashMap;
1.6 import java.util.Map;
1.7 -import org.json.simple.parser.JSONParser;
1.8 -import org.json.simple.parser.ParseException;
1.9 +//import org.json.simple.parser.JSONParser;
1.10 +//import org.json.simple.parser.ParseException;
1.11 import org.xml.sax.ContentHandler;
1.12 import org.xml.sax.DTDHandler;
1.13 import org.xml.sax.EntityResolver;
1.14 @@ -33,15 +33,17 @@
1.15 /**
1.16 * TODO: rozpornat formát vstupu a podle toho delegovat
1.17 */
1.18 - JSONParser p = new JSONParser();
1.19 + //JSONParser p = new JSONParser();
1.20 InputStreamReader vstup = new InputStreamReader(input.getByteStream());
1.21 - JsonSimpleContentHandler handler = new JsonSimpleContentHandler(contentHandler);
1.22 + //JsonSimpleContentHandler handler = new JsonSimpleContentHandler(contentHandler);
1.23
1.24 + /*
1.25 try {
1.26 p.parse(vstup, handler);
1.27 } catch (ParseException e) {
1.28 throw new SAXException("Chyba při načítání JSONu", e);
1.29 }
1.30 + */
1.31 }
1.32
1.33 @Override