()
| 39 | } |
| 40 | |
| 41 | @Test |
| 42 | public void findClass() throws IOException { |
| 43 | Enumeration<URL> base = JavaTest.class.getClassLoader().getResources("base/*"); |
| 44 | while (base.hasMoreElements()) { |
| 45 | System.out.println(base.nextElement().toString()); |
| 46 | } |
| 47 | } |
| 48 | |
| 49 | @Test |
| 50 | public void intro() throws IntrospectionException { |