java - What does this Path "file:///Users/..." mean? -


a path constructor example java tutorial:

path p3 = paths.get(uri.create("file:///users/joe/filetest.java")); 

what part uri.create("file:///users/joe/filetest.java") means? i'm not familiar uri synctax

it means file:// i.e file @ /users/joe/filetest.java.

similar other protocols, http:// , ftp://, path starts / looks little odd.


Comments

Popular posts from this blog

c# - DetailsView in ASP.Net - How to add another column on the side/add a control in each row? -

javascript - firefox memory leak -

Trying to import CSV file to a SQL Server database using asp.net and c# - can't find what I'm missing -