Collections Java Tutorial

import java.io.FileInputStream;
import java.util.Properties;
public class MainClass {
  public static void main(String args[]) throws Exception {
    Properties p = new Properties();
    p.load(new FileInputStream("test.txt"));
    p.list(System.out);
  }
}
//File: colon.txt
/*
foo:bar
one
two
three=four
five  six seven eight
nine ten
*/