https://github.com/subzane/jinifile
JIniFile stores and retrieves application-specific information and settings from INI files.
https://github.com/subzane/jinifile
Last synced: 11 months 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 (over 13 years ago)
- Default Branch: master
- Last Pushed: 2024-04-04T08:29:47.000Z (about 2 years ago)
- Last Synced: 2025-04-15T16:34:13.008Z (about 1 year ago)
- Language: Java
- Size: 22.5 KB
- Stars: 11
- Watchers: 1
- 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.