I have a huge file which contains lines in key=value format. If i wish to get the value of a particular key using getProperty() method of Properties class in java , is the complete file loaded into memory before the getProperty() operation is performed?
I have read that Properties class is a HashTable implementation java. So I would like to know if the entire properties file is loaded into a HashTable even to fetch the value of a single property using Properties Class.