Searched defs:FileReader (Results 1 - 2 of 2) sorted by relevance

/libcore/luni/src/main/java/java/io/
H A DFileReader.java25 * read requests are made, a FileReader is often wrapped by a
31 public class FileReader extends InputStreamReader { class in inherits:InputStreamReader
34 * Constructs a new FileReader on the given {@code file}.
41 public FileReader(File file) throws FileNotFoundException { method in class:FileReader
46 * Construct a new FileReader on the given FileDescriptor {@code fd}. Since
53 public FileReader(FileDescriptor fd) { method in class:FileReader
58 * Construct a new FileReader on the given file named {@code filename}.
65 public FileReader(String filename) throws FileNotFoundException { method in class:FileReader
/libcore/luni/src/main/java/libcore/io/
H A DIoUtils.java109 return new FileReader(absolutePath).readFully().toByteArray();
116 return new FileReader(absolutePath).readFully().toString(StandardCharsets.UTF_8);
194 private static class FileReader { class in class:IoUtils
201 public FileReader(String absolutePath) throws IOException { method in class:IoUtils.FileReader
232 public FileReader readFully() throws IOException {

Completed in 59 milliseconds