List of usage examples for java.io FileReader interface-usage
From source file org.dynamicloud.wiztorage.reader.FileReaderImpl.java
/**
* Copyright (c) 2016 Dynamicloud
* <p/>
* Permission is hereby granted, free of charge, to any person obtaining a copy
* of this software and associated documentation files (the "Software"), to deal
* in the Software without restriction, including without limitation the rights
From source file shiver.me.timbers.spring.security.io.ResourceFileReader.java
/** * @author Karl Bennett */ public class ResourceFileReader implements FileReader { @Override
From source file com.cuubez.visualizer.scanner.reader.JarFileReader.java
public class JarFileReader implements FileReader { private static Log log = LogFactory.getLog(JarFileReader.class); private JarInputStream jarInputStream; private JarEntry next;
From source file org.junithelper.core.file.FileReaderCommonsIOImpl.java
class FileReaderCommonsIOImpl implements FileReader { @Override public InputStream getResourceAsStream(String name) { Assertion.on("name").mustNotBeNull(name); return FileReaderCommonsIOImpl.class.getClassLoader().getResourceAsStream(name);
From source file org.apache.avro.file.DataFileReader.java
/** Random access to files written with {@link DataFileWriter}. * @see DataFileWriter */ public class DataFileReader<D> extends DataFileStream<D> implements FileReader<D> { private SeekableInputStream sin; private long blockStart;
From source file es.juntadeandalucia.panelGestion.negocio.utiles.file.RemoteFileReader.java
/** * This class manages remote files * * @author GUADALTEL S.A */ public class RemoteFileReader implements FileReader {