Splits apart a OS separator delimited set of paths in a string into multiple Strings. : OS « Development Class « 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 » Development Class » OSScreenshots 
Splits apart a OS separator delimited set of paths in a string into multiple Strings.
  

import java.io.File;
import java.io.FileFilter;
import java.util.ArrayList;
import java.util.List;
import java.util.regex.Pattern;
import java.util.regex.PatternSyntaxException;

/*
 *  Licensed to the Apache Software Foundation (ASF) under one
 *  or more contributor license agreements.  See the NOTICE file
 *  distributed with this work for additional information
 *  regarding copyright ownership.  The ASF licenses this file
 *  to you under the Apache License, Version 2.0 (the
 *  "License"); you may not use this file except in compliance
 *  with the License.  You may obtain a copy of the License at
 *  
 *    http://www.apache.org/licenses/LICENSE-2.0
 *  
 *  Unless required by applicable law or agreed to in writing,
 *  software distributed under the License is distributed on an
 *  "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
 *  KIND, either express or implied.  See the License for the
 *  specific language governing permissions and limitations
 *  under the License. 
 *  
 */



/**
 * Various string manipulation methods that are more efficient then chaining
 * string operations: all is done in the same buffer without creating a bunch of
 * string objects.
 
 @author <a href="mailto:dev@labs.apache.org">Dungeon Project</a>
 */
public class Main {


  /**
   * Splits apart a OS separator delimited set of paths in a string into
   * multiple Strings. File component path strings are returned within a List
   * in the order they are found in the composite path string. Optionally, a
   * file filter can be used to filter out path strings to control the
   * components returned. If the filter is null all path components are
   * returned.
   
   @param paths
   *            a set of paths delimited using the OS path separator
   @param filter
   *            a FileFilter used to filter the return set
   @return the filter accepted path component Strings in the order
   *         encountered
   */
  public static final List getPathsString paths, FileFilter filter )
  {
      int start = 0;
      int stop = -1;
      String path = null;
      ArrayList<String> list = new ArrayList<String>();

      // Abandon with no values if paths string is null
      if paths == null || paths.trim().equals"" ) )
      {
          return list;
      }

      final int max = paths.length() 1;

      // Loop spliting string using OS path separator: terminate
      // when the start index is at the end of the paths string.
      while start < max )
      {
          stop = paths.indexOfFile.pathSeparatorChar, start );

          // The is no file sep between the start and the end of the string
          if stop == -)
          {
              // If we have a trailing path remaining without ending separator
              if start < max )
              {
                  // Last path is everything from start to the string's end
                  path = paths.substringstart );

                  // Protect against consecutive separators side by side
                  if !path.trim().equals"" ) )
                  {
                      // If filter is null add path, if it is not null add the
                      // path only if the filter accepts the path component.
                      if filter == null || filter.acceptnew Filepath ) ) )
                      {
                          list.addpath );
                      }
                  }
              }

              break// Exit loop no more path components left!
          }

          // There is a separator between start and the end if we got here!
          // start index is now at 0 or the index of last separator + 1
          // stop index is now at next separator in front of start index
          path = paths.substringstart, stop );

          // Protect against consecutive separators side by side
          if !path.trim().equals"" ) )
          {
              // If filter is null add path, if it is not null add the path
              // only if the filter accepts the path component.
              if filter == null || filter.acceptnew Filepath ) ) )
              {
                  list.addpath );
              }
          }

          // Advance start index past separator to start of next path comp
          start = stop + 1;
      }

      return list;
  }

}

   
    
  
Related examples in the same category
1. Class representing a standard operating system platform, WIN, MAC, or POSIX.
2. Get OS
3. Platform specific functionality.
4. Condition that tests the OS type.
5. Class to help determining the OS
6. Get the operating systemGet the operating system
www.java2java.com | Contact Us
Copyright 2009 - 12 Demo Source and Support. All rights reserved.
All other trademarks are property of their respective owners.