I am creating file input streams/file out streams from a random access file via the following API:
RandomAccessFile.getFD();
FileInputStream(FileDescriptor)
FileOutputStream(FileDescriptor)
When I close the file input streams/file out streams, will the random access file also be closed?
Bye