You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

Main.java 499B

12345678910111213141516171819202122
  1. import java.io.IOException;
  2. /*
  3. * Created on 30-Jul-03
  4. *
  5. * To change this generated comment go to
  6. * Window>Preferences>Java>Code Generation>Code and Comments
  7. */
  8. /**
  9. * @author websterm
  10. *
  11. * To change this generated comment go to
  12. * Window>Preferences>Java>Code Generation>Code and Comments
  13. */
  14. public class Main {
  15. public static void main(String[] args) throws IOException {
  16. String propsName = (args.length > 0)? args[0] : "test.props";
  17. new test.TestProperties().load(propsName);
  18. }
  19. }