Pfad.Resolve Java
// Java program to demonstrate
// Path.resolve(String other) method
import java.nio.file.*;
public class GFG {
public static void main(String[] args)
{
// create an object of Path
Path path
= Paths.get("drive\\temp\\Spring");// Programme Java à démontrer
2
// Méthode Path.resolve(String other)
3
4
importer java . nio . fichier . * ;
5
6
classe publique GFG {
sept
public static void main ( String [] args )
8
{
9
dix
// crée un objet de Path
11
Chemin d' accès
// create a string object
String passedPath = "drive";
// call resolve() to create resolved Path
Path resolvedPath
= path.resolve(passedPath);
// print result
System.out.println("Resolved Path:"
+ resolvedPath);
}
}
Fallou Diallo