Reputation: 3648
i am using java to load conf file which is using by python application:
[session_manager]
host=1.2.3.4
[log_manager]
host=7.8.9.1
I known that we have a Properties class to load a regular properties file in java. But this file is diffrent. Does java have any class to load that file, so that we can get properties like that:
session_manager.host=1.2.3.4
log_manager.host=7.8.9.1
Upvotes: 1
Views: 117