Get the root path from the Path object : Paths « JDK 7 « Java

Home
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.JavaFX
25.JDK 6
26.JDK 7
27.JNDI LDAP
28.JPA
29.JSP
30.JSTL
31.Language Basics
32.Network Protocol
33.PDF RTF
34.Reflection
35.Regular Expressions
36.Scripting
37.Security
38.Servlets
39.Spring
40.Swing Components
41.Swing JFC
42.SWT JFace Eclipse
43.Threads
44.Tiny Application
45.Velocity
46.Web Services SOA
47.XML
Java » JDK 7 » Paths 




Get the root path from the Path object


import java.nio.file.Path;
import java.nio.file.Paths;

public class Test {

  public static void main(String[] argsthrows Exception{

    Path listing = Paths.get("/usr/bin/zip");

    System.out.println("Root of Path [" + listing.getRoot() "]");

  }
}

 














Related examples in the same category
1.Create Path from URI
2.Combining paths using path resolution
3.Get relative path
4.Resolve sibling Path
5.Converting a relative path into an absolute path
6.Convert Path to URI
7.Get absolute path
8.Get real path without following links
9.Convert Path to File
10.Get the relative path between two paths
11.Creating a Path object using FileSystems
12.Convert Path to String
13.Get the file name from the Path object
14.Get root from a Path Object
15.Get the folder/directory for each part of a full path
16.Get Subpath from a full path
17.Is a path absolute
18.Create a path from each sub folder
19.Catch Invalid path exception
20.Determining whether two paths are equivalent with equals method
21.Compare two path with compareTo and isSameFile method
22.Managing symbolic links
23.Check existance without following the symbolic links
24.Removing redundancies by normalizing a path
25.Get file Content Type
26.Get file name from Path object
27.Get the number of name element in a Path object
28.Get parent Path
29.Get the sub path from a Path object
30.Get absolute path from a given Path
java2s.com  | Contact Us | Privacy Policy
Copyright 2009 - 12 Demo Source and Support. All rights reserved.
All other trademarks are property of their respective owners.