Example usage for java.io Reader interface-usage

List of usage examples for java.io Reader interface-usage

Introduction

In this page you can find the example usage for java.io Reader interface-usage.

Usage

From source file de.bley.word.filereader.ReaderFile.java

/**
 *
 * Liest Text einer Datei aus.
 *
 * @author rbley
 */

From source file com.aionemu.packetsamurai.parser.valuereader.ClientStringReader.java

public class ClientStringReader implements Reader {
    private static Map<Integer, String> stringsById = new HashMap<Integer, String>();

    public static void load() {
        //PacketSamurai.getUserInterface().log("Loading Client strings... Please wait.");
        Util.drawTitle("Client Strings");

From source file com.pinterest.terrapin.storage.HFileReader.java

/**
 * A reader which can perform lookups against HFiles.
 */
public class HFileReader implements Reader {
    private static final byte[] EMPTY_COLUMN = Bytes.toBytes("");

From source file com.facebook.hive.orc.ReaderImpl.java

public final class ReaderImpl implements Reader {
    private static final Log LOG = LogFactory.getLog(ReaderImpl.class);
    private static final int DIRECTORY_SIZE_GUESS = 16 * 1024;

    private final FileSystem fileSystem;
    private final Path path;

From source file com.blm.orc.ReaderImpl.java

final class ReaderImpl implements Reader {

    private static final Log LOG = LogFactory.getLog(ReaderImpl.class);

    private static final int DIRECTORY_SIZE_GUESS = 16 * 1024;

From source file org.wso2.carbon.mediator.datamapper.engine.input.readers.JSONReader.java

/**
 * This is a JSON reader implementation based on JSON Simple library.
 */
public class JSONReader implements Reader, ContentHandler {
    private static final Log log = LogFactory.getLog(JSONReader.class);
    private InputModelBuilder modelBuilder;

From source file org.wso2.carbon.mediator.datamapper.engine.input.readers.XMLReader.java

/**
 * This class implements {@link Reader} interface and xml reader for data mapper engine using SAX
 */
public class XMLReader extends DefaultHandler implements Reader {

    private static final Log log = LogFactory.getLog(XMLReader.class);

From source file com.itude.mobile.android.util.DataUtil.java

class ReadFromGLB implements Reader {
    // this cache contains xml files which are already unobfuscated
    private final Map<String, byte[]> _cacheOfXml = new HashMap<String, byte[]>();

    @Override
    public byte[] read(String filename) {