
Hi,
Can any one tell me the basics of File handling in Java?
Thanks

Hi,
File handling is very important features of any programming language. Almost all the business applications needs some way to save and retrieve the data from configuration files such as .properties file or xml file.
Java programming language also provide very good file handling features in their api.
You can read more at File Handling in Java.
Examples of file handling in Java:
Java read file line by line - Java Tutorial
Thanks