Esempio n. 1
0
 /**
  * @param args
  * @throws IOException
  */
 public static void main(String[] args) throws IOException {
   String[] a = ".*?/super_*.jar".split("\\s*[,]\\s*");
   Test t = new Test();
   t.setFileProtocols("jar,vfsfile,vfszip");
   t.setIncludeJars(".*?/super_*.jar(!/)?");
   UrlSet urlSet = t.buildUrlSet();
   for (int i = 0; i < urlSet.getUrls().size(); i++) {
     System.out.println(i + " urlSet " + urlSet.getUrls().get(i));
   }
 }