I want to make collection with file paths and statue of each file then save it in file
and read it again when i need to that in java and what best collection type to this.
type of status boolian lock or unlock
Tell me more
×
Stack Overflow is a question and answer site for
professional and enthusiast programmers. It's 100% free, no registration required.
|
|
||||
|
|
Since the status is a boolean the following would work:
Since
If the status becomes more complex then be sure use a class that implements |
||||
|
Use the Properties object, as you can use the string based save and load. |
|||||||
|