Can someone post or point out an example of
- how flat-file data access is done in java? What java technology is used for the purpose?
- how rdbms data access is done in java? What java technology is used for the purpose?
Can someone post or point out an example of
how flat-file data access is done in java? What java technology is used for the purpose?
As fge said, too generic. Need more detail. You use File I/O to interact with the file system, but if you need to interact with some specific format, that's just the beginning.
how rdbms data access is done in java? What java technology is used for the purpose?
With JDBC. You can find a driver for just about any database out there along with a horde of supporting libraries to simplify database access, transaction management, schema management, etc.
May I direct you to the Java Tutorial? In particular the sections Basic I/O and JDBC Database Access?