List of usage examples for java.io Reader subclass-usage
From source file UTF8Reader.java
/** * @author Andy Clark, IBM * * @version $Id: UTF8Reader.java 515 2008-03-17 21:02:23Z jfrederic.clere@jboss.com $ */ public class UTF8Reader extends Reader {
From source file UTF8Reader.java
/** * @author Andy Clark, IBM * * @version $Id: UTF8Reader.java 515 2008-03-17 21:02:23Z jfrederic.clere@jboss.com $ */ public class UTF8Reader extends Reader {
From source file org.sakaiproject.calendar.impl.readers.IcalendarReader.java
/** * This class parses an import file from iCalendar. */ public class IcalendarReader extends Reader { private ResourceLoader rb = new ResourceLoader("calendar"); private static Log M_log = LogFactory.getLog(IcalendarReader.class);
From source file com.bluexml.side.build.tools.reader.MavenProjectReader.java
@SuppressWarnings("restriction") public class MavenProjectReader extends Reader { Logger logger = Logger.getLogger(this.getClass()); boolean addAll = false; public MavenProjectReader(ComponantsRegisters registries, Properties props) {
From source file mitm.common.util.AutoDetectUnicodeReader.java
/**
* Reader that tries to detect the encoding (for example UTF-8) used by the input stream. The first detection step
* is to check whether the input contains a byte order mark (BOM). If a BOM is found, the BOM will be used. If
* a BOM is not found, the char type will be guessed using a {@link CharsetDetector}
*
* @author Martijn Brinkers
From source file org.obm.push.mail.bean.EmailReader.java
public class EmailReader extends Reader { private static final Charset DEFAULT_CHARSET = Charsets.UTF_8; private final Reader reader; private final Charset charset;
From source file util.epub.util.commons.io.XmlStreamReader.java
/**
* Character stream that handles all the necessary Voodo to figure out the
* charset encoding of the XML document within the stream.
* <p>
* IMPORTANT: This class is not related in any way to the org.xml.sax.XMLReader.
* This one IS a character stream.
From source file nl.siegmann.epublib.util.commons.io.XmlStreamReader.java
/**
* Character stream that handles all the necessary Voodo to figure out the
* charset encoding of the XML document within the stream.
* <p>
* IMPORTANT: This class is not related in any way to the org.xml.sax.XMLReader.
* This one IS a character stream.
From source file de.machmireinebook.epubeditor.epublib.util.commons.io.XmlStreamReader.java
/**
* Character stream that handles all the necessary Voodo to figure out the
* charset encoding of the XML document within the stream.
* <p>
* IMPORTANT: This class is not related in any way to the org.xml.sax.XMLReader.
* This one IS a character stream.
From source file nl.minbzk.dwr.zoeken.enricher.util.XmlHtmlReader.java
/**
* Character stream that handles (or at least attemtps to) all the necessary Voodo to figure out the charset encoding of both XML and HTML documents within a given stream.
*
* IMPORTANT: This class is not related in any way to the org.xml.sax.XMLReader. This one IS a character stream.
*
* All this has to be done without consuming characters from the stream, if not the XML parser will not recognized the document as a valid XML. This is not 100% true, but it's close enough (UTF-8 BOM is not handled by all parsers right now,