Combining paths using path resolution : 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 




Combining paths using path resolution

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

public class Test {

  public static void main(String[] args) {
    Path rootPath = Paths.get("/home/docs");
    Path partialPath = Paths.get("users.txt");
    Path resolvedPath = rootPath.resolve(partialPath);

  }
}

 














Related examples in the same category
1.Create Path from URI
2.Get relative path
3.Resolve sibling Path
4.Converting a relative path into an absolute path
5.Convert Path to URI
6.Get absolute path
7.Get real path without following links
8.Convert Path to File
9.Get the relative path between two paths
10.Creating a Path object using FileSystems
11.Convert Path to String
12.Get the file name from the Path object
13.Get root from a Path Object
14.Get the folder/directory for each part of a full path
15.Get Subpath from a full path
16.Is a path absolute
17.Create a path from each sub folder
18.Catch Invalid path exception
19.Determining whether two paths are equivalent with equals method
20.Compare two path with compareTo and isSameFile method
21.Managing symbolic links
22.Check existance without following the symbolic links
23.Removing redundancies by normalizing a path
24.Get file Content Type
25.Get file name from Path object
26.Get the number of name element in a Path object
27.Get parent Path
28.Get the root path from the Path object
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.