Found 4338 Articles for Java 8

What is Scanner class in Java? when was it introduced?

Maruthi Krishna
Updated on 01-Aug-2019 14:03:58

352 Views

Until Java 1.5 to read data from the user programmers used to depend on the character stream classes and byte stream classes.From Java 1.5 Scanner class was introduced. This class accepts a File, InputStream, Path and, String objects, reads all the primitive data types and Strings (from the given source) token by token using regular expressions.By default, whitespace is considered as the delimiter (to break the data into tokens).To read various datatypes from the source using the nextXXX() methods provided by this class namely, nextInt(), nextShort(), nextFloat(), nextLong(), nextBigDecimal(), nextBigInteger(), nextLong(), nextShort(), nextDouble(), nextByte(), nextFloat(), next().Example − Reading data from ... Read More

What is the necessity of byte streams and character streams in Java?

Maruthi Krishna
Updated on 01-Aug-2019 14:00:08

514 Views

Java provides I/O Streams to read and write data where, a Stream represents an input source or an output destination which could be a file, i/o devise, other program etc.Based on the data they handle there are two types of streams −Byte StreamsThese handle data in bytes (8 bits) i.e., the byte stream classes read/write data of 8 bits. Using these you can store characters, videos, audios, images etc.The InputStream and OutputStream classes (abstract) are the super classes of all the input/output stream classes: classes that are used to read/write a stream of bytes. Following are the byte array stream ... Read More

How to create a new directory by using File object in Java?

Maruthi Krishna
Updated on 01-Aug-2019 13:54:30

5K+ Views

The class named File of the java.io package represents a file or directory (path names) in the system. This class provides various methods to perform various operations on files/directories.Creating a new directoryThe mkdir() method of this class creates a directory with the path represented by the current object.Therefore, to create a directory −Instantiate the File class by passing the path of the directory you need to create, as a parameter (String).Invoke the mkdir() method using the above created file object.ExampleFollowing Java example reads the path and name of the directory to be created, from the user, and creates it.import java.io.File; ... Read More

How to read data from a file using FileInputStream?

Maruthi Krishna
Updated on 01-Aug-2019 13:48:45

3K+ Views

The FileInputStream class reads the data from a specific file (byte by byte). It is usually used to read the contents of a file with raw bytes, such as images.To read the contents of a file using this class −First of all, you need to instantiate this class by passing a String variable or a File object, representing the path of the file to be read.FileInputStream inputStream = new FileInputStream("file_path"); or, File file = new File("file_path"); FileInputStream inputStream = new FileInputStream(file);Then read the contents of the specified file using either of the variants of read() method −int read() − This ... Read More

What is the use of FileInputStream and FileOutputStream in classes in Java?

Maruthi Krishna
Updated on 01-Aug-2019 13:42:15

13K+ Views

Java provides I/O Streams to read and write data where, a Stream represents an input source or an output destination which could be a file, i/o devise, other program etc.There are two types of streams available −InputStream − This is used to read (sequential) data from a source.OutputStream − This is used to write data to a destination.FileInputStreamThis class reads the data from a specific file (byte by byte). It is usually used to read the contents of a file with raw bytes, such as images.To read the contents of a file using this class −First of all, you need ... Read More

How to convert InputStream object to a String in Java?

Maruthi Krishna
Updated on 01-Aug-2019 13:32:40

10K+ Views

Java provides I/O Streams to read and write data where, a Stream represents an input source or an output destination which could be a file, i/o devise, other program etc.There are two types of streams available −InputStream − This is used to read (sequential) data from a source.OutputStream − This is used to write data to a destination.FileInputStreamThis class reads the data from a specific file (byte by byte). It is usually used to read the contents of a file with raw bytes, such as images.Converting an InputStream object to StringYou can convert an InputStream Object int to a String ... Read More

Difference between the byte stream and character stream classes in Java?

Maruthi Krishna
Updated on 02-Jul-2020 10:37:19

3K+ Views

Java provides I/O Streams to read and write data where, a Stream represents an input source or an output destination which could be a file, i/o devise, other program etc.Based on the data they handle there are two types of streams −Byte Streams − These handle data in bytes (8 bits) i.e., the byte stream classes read/write data of 8 bits. Using these you can store characters, videos, audios, images etc.Character Streams − These handle data in 16 bit Unicode. Using these you can read and write text data only.The Reader and Writer classes (abstract) are the super classes of ... Read More

What is a Stream and what are the types of Streams and classes in Java?

Maruthi Krishna
Updated on 01-Aug-2019 13:22:47

24K+ Views

Java provides I/O Streams to read and write data where, a Stream represents an input source or an output destination which could be a file, i/o devise, other program etc.In general, a Stream will be an input stream or, an output stream.InputStream − This is used to read data from a source.OutputStream − This is used to write data to a destination.Based on the data they handle there are two types of streams −Byte Streams − These handle data in bytes (8 bits) i.e., the byte stream classes read/write data of 8 bits. Using these you can store characters, videos, ... Read More

What is the use of in flush() and close() methods of BufferedWriter class in Java?

Maruthi Krishna
Updated on 01-Aug-2019 13:17:24

2K+ Views

The BufferedWriter class of Java is used to write stream of characters to the specified destination (character-output stream). It initially stores all the characters in a buffer and pushes the contents of the buffer to the destination, making the writing of characters, arrays and Strings efficient.You can specify the required size of the buffer at the time of instantiating this class.The flush() methodWhile you are trying to write data to a Stream using the BufferedWriter object, after invoking the write() method the data will be buffered initially, nothing will be printed.The flush() method is used to push the contents of ... Read More

Guidelines to be followed while implementing equals method in Java?

Maruthi Krishna
Updated on 02-Jul-2020 10:25:05

128 Views

To compare two objects, the Object class provides a method with name equals(), this method accepts an object and compares it with the current object.If the references of these two objects are equal, then it returns true else this method returns false.But this method returns true only if both references points to the same object. In fact, it should return true id the contents of the both objects are equal.Exampleclass Employee {    private String name;    private int age;    Employee(String name, int age){       this.name = name;       this.age = age;    } } ... Read More

Advertisements