In the fillInPropertiesMap method, read a file name from the console and populate the properties map with data from the file.
You can read about properties here: http://en.wikipedia.org/wiki/.properties
Implement the logic for file IO for the properties map.
Introducing properties
- 20
Locked
Comments (4)
- Popular
- New
- Old
You must be signed in to leave a comment
Mike S
23 March, 00:52
Word to the wise that doesn't get covered in Petros' video he posted. Integrate the Properties() technique, but think of it also as its own kind of hashMap to iterate through it! : )
0
Seferi
28 November 2020, 14:17
Use properties for this one:
https://www.baeldung.com/java-properties
and then use the methods of properties.
Here is a great resource:
+5
Ian De Bie Full Stack Developer
22 October 2020, 02:48
you need to know about properties for this one...
Java Properties
+2
Petros
18 September 2020, 18:49
This video that someone else posted helped:
https://www.youtube.com/watch?v=QpWBHIOjM6I
Also, I had to iterate through both the properties map and properties object to pass. Still don't understand half of what I'm doing.
+3