Описание тега filereader
`FileReader` can refer either to the `java.io.FileReader` class for reading files as text in a file system in Java, or to a similar class in JavaScript to access files on a local machine.
See the description for more details.
FileReader
can refer to two things:
- Java: a way to read a file on a file system as text; if you are using Java 7+, you can also use
Files.newBufferedReader()
. - JavaScript: a way to access files on the host machine (as opposed to a remote machine); see MDN FileReader Web API Reference;