JVM Languages
inifile.txt
Associated article: Creating .INI Classes in Java
Tags: JVM Languages Design
Published source code accompanying the article by Mark Meyer in which he presents IniFile, a lightweight Java class that reads standard .INI text files into memory, lets you manipulate their contents, and stores their corresponding key/value pairs in memory. Also see INIFILE.ZIP.
Creating .INI Classes In Java
by Mark Meyer
Example 1:
; this is a comment
[MGDSFAXGEN]
UserName
SpoolFileName=c:winnttempzetafax.spl
# this is also a comment
InstructFileLocation=INSTRUCT
FaxFormat=FINE
TopMargin=0.01
BottomMargin=0.01
LeftMargin=0.01
RightMargin=0.01
ReportPath=c:prodmgds
Example 2:
TOKEN :
{
| <USCORE: "_&...


