Parses the CLASSPATH and returns the directories used within it. : ClassPath « Reflection « Java

Java
1. 2D Graphics GUI
2. 3D
3. Advanced Graphics
4. Ant
5. Apache Common
6. Chart
7. Class
8. Collections Data Structure
9. Data Type
10. Database SQL JDBC
11. Design Pattern
12. Development Class
13. EJB3
14. Email
15. Event
16. File Input Output
17. Game
18. Generics
19. GWT
20. Hibernate
21. I18N
22. J2EE
23. J2ME
24. JDK 6
25. JNDI LDAP
26. JPA
27. JSP
28. JSTL
29. Language Basics
30. Network Protocol
31. PDF RTF
32. Reflection
33. Regular Expressions
34. Scripting
35. Security
36. Servlets
37. Spring
38. Swing Components
39. Swing JFC
40. SWT JFace Eclipse
41. Threads
42. Tiny Application
43. Velocity
44. Web Services SOA
45. XML
Java Tutorial
Java Source Code / Java Documentation
Java Open Source
Jar File Download
Java Articles
Java Products
Java by API
Photoshop Tutorials
Maya Tutorials
Flash Tutorials
3ds-Max Tutorials
Illustrator Tutorials
GIMP Tutorials
C# / C Sharp
C# / CSharp Tutorial
C# / CSharp Open Source
ASP.Net
ASP.NET Tutorial
JavaScript DHTML
JavaScript Tutorial
JavaScript Reference
HTML / CSS
HTML CSS Reference
C / ANSI-C
C Tutorial
C++
C++ Tutorial
Ruby
PHP
Python
Python Tutorial
Python Open Source
SQL Server / T-SQL
SQL Server / T-SQL Tutorial
Oracle PL / SQL
Oracle PL/SQL Tutorial
PostgreSQL
SQL / MySQL
MySQL Tutorial
VB.Net
VB.Net Tutorial
Flash / Flex / ActionScript
VBA / Excel / Access / Word
XML
XML Tutorial
Microsoft Office PowerPoint 2007 Tutorial
Microsoft Office Excel 2007 Tutorial
Microsoft Office Word 2007 Tutorial
Java » Reflection » ClassPathScreenshots 
Parses the CLASSPATH and returns the directories used within it.
 
/*
 * JBoss, Home of Professional Open Source
 * Copyright 2006, Red Hat Middleware LLC, and individual contributors 
 * as indicated by the @author tags. 
 * See the copyright.txt in the distribution for a
 * full listing of individual contributors. 
 * This copyrighted material is made available to anyone wishing to use,
 * modify, copy, or redistribute it subject to the terms and conditions
 * of the GNU Lesser General Public License, v. 2.1.
 * This program is distributed in the hope that it will be useful, but WITHOUT A 
 * WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A 
 * PARTICULAR PURPOSE.  See the GNU Lesser General Public License for more details.
 * You should have received a copy of the GNU Lesser General Public License,
 * v.2.1 along with this distribution; if not, write to the Free Software
 * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, 
 * MA  02110-1301, USA.
 
 * (C) 2005-2006,
 * @author JBoss Inc.
 */
/*
* Copyright (C) 2001,
*
* Arjuna Solutions Limited,
* Newcastle upon Tyne,
* Tyne and Wear,
* UK.
*
* $Id: ClassPathParser.java 2342 2006-03-30 13:06:17Z  $
*/


import java.lang.StringIndexOutOfBoundsException;

/**
 * This class parses the CLASSPATH and returns the directories used
 * within it.
 *
 @author Mark Little (mark@arjuna.com)
 @version $Id: ClassPathParser.java 2342 2006-03-30 13:06:17Z  $
 @since JTS 2.1.
 */

public class ClassPathParser
{

   public ClassPathParser ()
   {
      _classPath = System.getProperty("java.class.path");
      _start = 0;
   }

   /**
    @return the directory path of the next entry in the CLASSPATH that
    * contains the specified string.
    */

   public final String getPath (String contains)
   {
      String toReturn = null;

      if ((_classPath != null&& (contains != null))
      {
         int indx = _classPath.indexOf(contains, _start);

         if (indx != -1)
         {
            int lastIndex = _classPath.indexOf(pathSeparator, _start);
            int sepIndex = lastIndex+1;

            if (lastIndex > indx)  // at start of path?
               sepIndex = 0;
            else
            {
               while ((lastIndex < indx&& (lastIndex != -1))
               {
                  lastIndex = _classPath.indexOf(pathSeparator, sepIndex);

                  if (lastIndex == -1)
                     lastIndex = _classPath.length();
                  else
                  {
                     if (lastIndex < indx)
                        sepIndex = lastIndex+1;
                  }
               }
            }

            try
            {
               toReturn = _classPath.substring(sepIndex, lastIndex);

               _start = indx+1;
            }
            catch (StringIndexOutOfBoundsException e)
            {
               // nothing left!!
            }
         }
      }

      return toReturn;
   }

   /**
    * Reload the classpath and reset the class ready to re-parse.
    *
    @return <code>true</code> if a non-null CLASSPATH was loaded,
    * <code>false</code> otherwise.
    */

   public final boolean reset ()
   {
      _classPath = System.getProperty("java.class.path");

      _start = 0;

      return (boolean) (_classPath != null);
   }

   private String _classPath;
   private int    _start;

   private static final char winSeparator = ';';
   private static final char unixSeparator = ':';

   private static char pathSeparator = unixSeparator;

   static
   {
      pathSeparator = System.getProperty("path.separator").charAt(0);
   }

}

   
  
Related examples in the same category
1. Find occurrencens of a classname in system classpath or the specified ClassLoader
2. Use reflection to access the true classpath info.
3. Classpath Utils
4. Responsible for loading (class) files from the CLASSPATH. Inspired by sun.tools.ClassPath.
www.java2java.com | Contact Us
Copyright 2009 - 12 Demo Source and Support. All rights reserved.
All other trademarks are property of their respective owners.