How to Convert a String to Path in Java

Being a server-side language, Java is used heavily when it comes to file system operations.
To access the file system, you usually need to use a path to a directory or a file. A path is a string that represents the location of a file or directory.
In this article, we will see how to convert a string to a path in Java.
How to convert a string to a path in Java
To learn how to convert a string to a path, let's first define a string that represents a path:
public class Main
{
public static void main(String[] args) {
String location = "C:/Users/sabe/Desktop";
System.out.println(location);
}
}
The output of the above code is:
C:/Users/sabe/Desktop
Now, if we want to convert this string to a path, we can use the Paths.get()
method.
For this, we'll need to import both java.nio.file.Paths
and java.nio.file.Path
:
import java.nio.file.Paths;
import java.nio.file.Path;
Then, we can use the Paths.get()
method to convert the string to a path:
import java.nio.file.Path;
import java.nio.file.Paths;
public class Main
{
public static void main(String[] args) {
String location = "C:/Users/sabe/Desktop";
Path path = Paths.get(location);
System.out.println(path);
}
}
The output is:
C:/Users/sabe/Desktop
If you don't have the entire path in string, you can provide it piece by piece, or folder by folder, by using the Paths.get()
method and pass each folder as a separate parameter:
import java.nio.file.Path;
import java.nio.file.Paths;
public class Main
{
public static void main(String[] args) {
Path path = Paths.get("C:", "Users", "sabe", "Desktop");
}
}
Then when you want it in a String
, you can use the Path.toString()
method:
import java.nio.file.Path;
import java.nio.file.Paths;
public class Main
{
public static void main(String[] args) {
Path path = Paths.get("C:", "Users", "sabe", "Desktop");
String location = path.toString();
System.out.println(location);
}
}
C:/Users/sabe/Desktop
Conclusion
In this post, we learned how to convert a string to a path in Java.
Simply use the Paths.get()
method to convert a string to a path.
Thanks for reading!
If you want to learn about web development, founding a start-up, bootstrapping a SaaS, and more, follow me on Twitter! You can also join the conversation over at our official Discord!
Leave us a message!