Java Path Is Absolute isAbsolutePath(String path)

Here you can find the source of isAbsolutePath(String path)

Description

is Absolute Path

License

Apache License

Declaration

public static boolean isAbsolutePath(String path) 

Method Source Code

//package com.java2s;
//License from project: Apache License 

public class Main {
    public static boolean isAbsolutePath(String path) {
        return path.startsWith("/");
    }/*from  w  w w  .  j av a  2 s  .  c o  m*/
}

Related

  1. isAbsolute(String path)
  2. isAbsolute(String path)
  3. isAbsolute(String path)
  4. isAbsolutePath(String filename)
  5. isAbsolutePath(String path)
  6. isAbsolutePath(String path)
  7. isAbsolutePath(String path)
  8. isAbsolutePath(String path)
  9. isAbsolutePath(String path)