I was wondering does java provides any way to implement programs stated below without file handling.
Lets say I want to make a program for hospital patients record or a phonebook in which I can add, delete and edit patient name, NIC number and phone number.. Making such a program with file handling will be difficult.
I know its a stupid question but I am new to Java..
Regards
What you describe sounds like a database. A database helps you store, retrieve and modify data. It usually does a better job than you (or me) ever will implementing this with files. A database is not strictly for use online, you can just install one on your local machine.
JBDCis a term you should use for googling