Package org.xhtmlrenderer.demo.browser

Examples of org.xhtmlrenderer.demo.browser.PlainTextXMLReader


            String contentType = uc.getContentType();
            // Maybe should popup a choice when content/unknown!
            if (contentType.equals("text/plain")
                    || contentType.equals("content/unknown")) {
                inputStream = uc.getInputStream();
                SAXSource source = new SAXSource(new PlainTextXMLReader(
                    inputStream), new InputSource());
                xr = XMLResource.load(source);
            } else if (contentType.startsWith("image")) {
                String doc = "<img src='" + uri + "'/>";
                xr = XMLResource.load(new StringReader(doc));
View Full Code Here

TOP

Related Classes of org.xhtmlrenderer.demo.browser.PlainTextXMLReader

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.