Package org.openjump.util
Class UriUtil
- java.lang.Object
-
- org.openjump.util.UriUtil
-
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static URI
createFileUri(String file)
static URI
createZipUri(File file, String entry)
Create a URI to the entry within a ZIP file.static URI
createZipUri(String file, String entry)
static String
getFileExtension(URI uri)
Get the file extension from the URI path.static String
getFileName(String path)
static String
getFileName(URI uri)
Get the file name from the URI path.static String
getFileNameWithoutExtension(URI uri)
Get the file name without the extension from the URI path.static String
getFilePath(URI uri)
static Map<String,String>
getParameters(URI uri)
static String
getPath(String path)
static String
getZipEntryFilePath(URI uri)
Get the path to an entry in a ZIP URI.static String
getZipEntryName(URI uri)
Get the name of a ZIP file entry from a ZIP URI.static File
getZipFile(URI uri)
Get the ZIP file from a ZIP URI.static String
getZipFileName(URI uri)
static String
getZipFilePath(URI uri)
static boolean
isURL(String in)
static String
removeExtension(String path)
static String
urlAddCredentials(String url, String user, String pass)
static String
urlAddUserInfo(String url, String userinfo)
userinfo is the prepared urlencoded string before the @ eg.static String
urlDecode(String in)
static String
urlEncode(String in)
static String
urlGetHost(String url)
static String
urlGetPassword(String url)
static String
urlGetPath(String url)
static String
urlGetPort(String url)
static String
urlGetUser(String url)
static String
urlGetUserInfo(String url)
userinfo is the prepared urlencoded string before the @ eg.static String
urlMakeAppendSafe(String url)
Make sure the url string ends with '?' or '&' to safely append url parametersstatic String
urlStripAuth(String url)
static String
urlStripPassword(String url)
-
-
-
Method Detail
-
createZipUri
public static URI createZipUri(File file, String entry)
Create a URI to the entry within a ZIP file.- Parameters:
file
- The ZIP file.entry
- The ZIP entry.- Returns:
- The URI.
-
getZipFile
public static File getZipFile(URI uri)
Get the ZIP file from a ZIP URI.- Parameters:
uri
- The URI.- Returns:
- The ZIP file.
-
getZipEntryName
public static String getZipEntryName(URI uri)
Get the name of a ZIP file entry from a ZIP URI.- Parameters:
uri
- The URI.- Returns:
- The ZIP entry name.
-
getFileExtension
public static String getFileExtension(URI uri)
Get the file extension from the URI path.- Parameters:
uri
- The URI.- Returns:
- The file extension.
-
getFileName
public static String getFileName(URI uri)
Get the file name from the URI path.- Parameters:
uri
- The URI.- Returns:
- The file name.
-
getFileNameWithoutExtension
public static String getFileNameWithoutExtension(URI uri)
Get the file name without the extension from the URI path.- Parameters:
uri
- The URI.- Returns:
- The file name.
-
getZipEntryFilePath
public static String getZipEntryFilePath(URI uri)
Get the path to an entry in a ZIP URI.- Parameters:
uri
- The zip URI- Returns:
- The entry's path.
-
isURL
public static boolean isURL(String in)
-
urlGetUserInfo
public static String urlGetUserInfo(String url)
userinfo is the prepared urlencoded string before the @ eg. user:pass- Parameters:
url
- URL string to get the user info from- Returns:
- a String representing user info of the URL
-
urlMakeAppendSafe
public static String urlMakeAppendSafe(String url)
Make sure the url string ends with '?' or '&' to safely append url parameters- Parameters:
url
- string- Returns:
- url string safe to append parameters
-
urlAddUserInfo
public static String urlAddUserInfo(String url, String userinfo)
userinfo is the prepared urlencoded string before the @ eg. user:pass- Parameters:
url
- url String to add user info touserinfo
- user info to add- Returns:
- url with added user info
-
-