Posts

Showing posts with the label Handling

Internal mechanism of File Handling in java

Internals of File Handling in Java File Handling is a very important topic in java. We can read, write, update files through file handling. It gives us authority to modify files through this mechanism. We will read here internal mechanism of file handling. How files are being read, How Input/Output operation are being performed on file. In order to read about all this we need to understand STREAM. We will discuss here-   * Why do we need Stream?   *What is Stream?   *What is INPUT?   *What is OUTPUT?   *What is Input Stream?   *What is Output Stream?   *What is Byte Stream?   *Why do we need Byte Stream?   *What is Character Stream?   *Why do we need Character Stream?   *How many ways to take Input from keyboard? We will get all answer here while reading all posts. First I would like to tell you concept of File Handling. File Handling- We can  read or write som...