Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/subzane/jinifile
JIniFile stores and retrieves application-specific information and settings from INI files.
https://github.com/subzane/jinifile
Last synced: 26 days ago
JSON representation
JIniFile stores and retrieves application-specific information and settings from INI files.
- Host: GitHub
- URL: https://github.com/subzane/jinifile
- Owner: SubZane
- License: mit
- Created: 2012-12-15T23:32:50.000Z (about 12 years ago)
- Default Branch: master
- Last Pushed: 2024-04-04T08:29:47.000Z (9 months ago)
- Last Synced: 2024-04-04T09:34:48.054Z (9 months ago)
- Language: Java
- Size: 22.5 KB
- Stars: 12
- Watchers: 2
- Forks: 6
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE-MIT
Awesome Lists containing this project
README
JIniFile
========JIniFile stores and retrieves application-specific information and settings from INI files.
JIniFile enables handling the storage and retrieval of application-specific information
and settings in a standard INI file. The INI file text format is a standard introduced
in Windows 3.x for storing and retrieving application settings from session to session.
An INI file stores information in logical groupings, called "sections." For example,
the WIN.INI file contains a section called "[Desktop]". Within each section, actual data
values are stored in named keys. Keys take the form:keyname = value
A FileName is passed to the JIniFile constructor and identifies the INI file that the object accesses.