class ConfigParser extends Object
Constructor and Description |
---|
ConfigParser() |
Modifier and Type | Method and Description |
---|---|
static Map<String,String> |
parse(BufferedReader input)
Return a Map using the contents of BufferedReader input.
|
static Map<String,String> |
parse(File file)
Return a Map using the contents of the File file.
|
static Map<String,String> |
parse(File file,
Map<String,String> map)
Return a Map using the contents of the File file.
|
static Map<String,String> |
parse(String string)
Return a Map using the contents of the String string.
|
static List<String> |
parseSubscriptions(BufferedReader input)
Return a List where each element is a line from the BufferedReader input.
|
static List<String> |
parseSubscriptions(File file)
Return a List where each element is a line from the File file.
|
static List<String> |
parseSubscriptions(File file,
List<String> list)
Return a List using the contents of the File file.
|
static List<String> |
parseSubscriptions(String string)
Return a List where each element is a line from the String string.
|
static String |
stripComments(String inputLine)
Strip the comments from a String.
|
static void |
write(Map<String,String> map,
BufferedWriter output)
Write contents of Map map to BufferedWriter output.
|
static void |
write(Map<String,String> map,
File file)
Write contents of Map map to the File file.
|
static void |
writeSubscriptions(List<String> list,
BufferedWriter output)
Write contents of List list to BufferedReader output.
|
static void |
writeSubscriptions(List<String> list,
File file)
Write contents of List list to File file.
|
public static String stripComments(String inputLine)
inputLine
- A String to strip comments from.public static Map<String,String> parse(BufferedReader input) throws IOException
input
- A BufferedReader with lines in key=value format to parse into
a Map.IOException
- if the BufferedReader cannot be read.public static Map<String,String> parse(File file) throws IOException
file
- A File to parse.IOException
- if file cannot be read.public static Map<String,String> parse(String string) throws IOException
string
- A String to parse.IOException
- if file cannot be read.public static Map<String,String> parse(File file, Map<String,String> map)
file
- A File to attempt to parse.map
- A Map containing values to use as defaults.public static List<String> parseSubscriptions(BufferedReader input) throws IOException
input
- A BufferedReader to parse.IOException
- if input cannot be read.public static List<String> parseSubscriptions(File file) throws IOException
file
- A File to parse.IOException
- if file cannot be read.public static List<String> parseSubscriptions(String string) throws IOException
string
- A String to parse.IOException
- if string cannot be read.public static List<String> parseSubscriptions(File file, List<String> list)
file
- A File to attempt to parse.list
- The default subscriptions to be saved and returned if the file cannot be readpublic static void write(Map<String,String> map, BufferedWriter output) throws IOException
map
- A Map to write to output.output
- A BufferedWriter to write the Map to.IOException
- if the BufferedWriter cannot be written to.public static void write(Map<String,String> map, File file) throws IOException
map
- A Map to write to file.file
- A File to write the Map to.IOException
- if file cannot be written to.public static void writeSubscriptions(List<String> list, BufferedWriter output) throws IOException
list
- A List to write to file.output
- A BufferedReader to write list to.IOException
- if output cannot be written to.public static void writeSubscriptions(List<String> list, File file) throws IOException
list
- A List to write to file.file
- A File to write list to.IOException
- if output cannot be written to.