playing with property loader stuff

cat-town
Dan Buch 14 years ago
parent 7c2260ac73
commit 098acfcf2d

@ -0,0 +1,2 @@
foo.bar = hambones
ham.bones = foobar

@ -0,0 +1,30 @@
import java.io.FileInputStream;
import java.util.Properties;
public class ShowProps {
public static String USAGE = "Usage: ShowProps <properties-file>";
public static void main(String[] args)
{
try {
if (args.length >= 1) {
FileInputStream instream = new FileInputStream(args[0]);
Properties props = new Properties();
props.load(instream);
instream.close();
props.list(System.out);
} else {
System.out.println(USAGE);
return;
}
} catch (Exception e) {
System.out.println("OMG FAIL");
e.printStackTrace();
}
}
}
Loading…
Cancel
Save