Category Java

Scientech Easy welcomes you in the Java tutorial category. We have designed this tutorial series for beginners, students, and professional developers who want to learn Java programming from basic to advanced levels. Here, you will find easy-to-understand Java tutorials, practical example programs, interview questions, and quizzes.

So, let’s start to understand Java concepts one by one with these tutorials.

InputStreamReader in Java (with Example)

An InputStreamReader in Java is a character input stream that uses the stream of bytes as its data source. It acts as a bridge between an incoming stream of bytes and an outgoing sequence of characters and converts a byte…

Reader Class in Java

Reader in Java is an abstract class that reads characters from the files. In simple words, the reader class reads character streams. It is the superclass of all reader subclasses. The concrete class that extends Reader class operates on Unicode…

File in Java | File Class, Example

So far, we have used variables and arrays to store data inside Java programs. This approach creates two problems. Data stored in a program is lost when the program is terminated. It means storage is temporary. Large volumes of data…

RandomAccessFile in Java

RandomAccessFile class in Java

RandomAccessFile in Java is a class that allows data to be read from and written to at any location in the file. In other simple words, RandomAccessFile class allows creating files that can be used for reading and writing data…