選択できるのは25トピックまでです。 トピックは、先頭が英数字で、英数字とダッシュ('-')を使用した35文字以内のものにしてください。

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. }