|
||||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |
java.lang.Objectnet.i2p.addressbook.ConfigParser
public class ConfigParser
Utility class providing methods to parse and write files in config file format, and subscription file format. TODO: Change file encoding from default to UTF-8? Or switch to the DataHelper loadProps/storeProps methods?
Constructor Summary | |
---|---|
ConfigParser()
|
Method Summary | |
---|---|
static java.util.Map |
parse(java.io.BufferedReader input)
Return a Map using the contents of BufferedReader input. |
static java.util.Map |
parse(java.io.File file)
Return a Map using the contents of the File file. |
static java.util.Map |
parse(java.io.File file,
java.util.Map map)
Return a Map using the contents of the File file. |
static java.util.Map |
parse(java.lang.String string)
Return a Map using the contents of the String string. |
static java.util.List |
parseSubscriptions(java.io.BufferedReader input)
Return a List where each element is a line from the BufferedReader input. |
static java.util.List |
parseSubscriptions(java.io.File file)
Return a List where each element is a line from the File file. |
static java.util.List |
parseSubscriptions(java.io.File file,
java.util.List list)
Return a List using the contents of the File file. |
static java.util.List |
parseSubscriptions(java.lang.String string)
Return a List where each element is a line from the String string. |
static java.lang.String |
stripComments(java.lang.String inputLine)
Strip the comments from a String. |
static void |
write(java.util.Map map,
java.io.BufferedWriter output)
Write contents of Map map to BufferedWriter output. |
static void |
write(java.util.Map map,
java.io.File file)
Write contents of Map map to the File file. |
static void |
writeSubscriptions(java.util.List list,
java.io.BufferedWriter output)
Write contents of List list to BufferedReader output. |
static void |
writeSubscriptions(java.util.List list,
java.io.File file)
Write contents of List list to File file. |
Methods inherited from class java.lang.Object |
---|
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait |
Constructor Detail |
---|
public ConfigParser()
Method Detail |
---|
public static java.lang.String stripComments(java.lang.String inputLine)
inputLine
- A String to strip comments from.
public static java.util.Map parse(java.io.BufferedReader input) throws java.io.IOException
input
- A BufferedReader with lines in key=value format to parse into
a Map.
java.io.IOException
- if the BufferedReader cannot be read.public static java.util.Map parse(java.io.File file) throws java.io.IOException
file
- A File to parse.
java.io.IOException
- if file cannot be read.public static java.util.Map parse(java.lang.String string) throws java.io.IOException
string
- A String to parse.
java.io.IOException
- if file cannot be read.public static java.util.Map parse(java.io.File file, java.util.Map map)
file
- A File to attempt to parse.map
- A Map to use as the default, if file fails.
public static java.util.List parseSubscriptions(java.io.BufferedReader input) throws java.io.IOException
input
- A BufferedReader to parse.
java.io.IOException
- if input cannot be read.public static java.util.List parseSubscriptions(java.io.File file) throws java.io.IOException
file
- A File to parse.
java.io.IOException
- if file cannot be read.public static java.util.List parseSubscriptions(java.lang.String string) throws java.io.IOException
string
- A String to parse.
java.io.IOException
- if string cannot be read.public static java.util.List parseSubscriptions(java.io.File file, java.util.List list)
file
- A File to attempt to parse.list
- list of files to parse
public static void write(java.util.Map map, java.io.BufferedWriter output) throws java.io.IOException
map
- A Map to write to output.output
- A BufferedWriter to write the Map to.
java.io.IOException
- if the BufferedWriter cannot be written to.public static void write(java.util.Map map, java.io.File file) throws java.io.IOException
map
- A Map to write to file.file
- A File to write the Map to.
java.io.IOException
- if file cannot be written to.public static void writeSubscriptions(java.util.List list, java.io.BufferedWriter output) throws java.io.IOException
list
- A List to write to file.output
- A BufferedReader to write list to.
java.io.IOException
- if output cannot be written to.public static void writeSubscriptions(java.util.List list, java.io.File file) throws java.io.IOException
list
- A List to write to file.file
- A File to write list to.
java.io.IOException
- if output cannot be written to.
|
||||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |