??????????????????·??
?????磺
????/opt/deve/tomcat/bin
????c:deve omcatin
??????????·??
????bin
????bin/data
????bindata
?????????????·??
?????????????????
??????/??? ???? ??????//?????·?? ????
??????/??? ???? ???????????·??
????????????·??
?????????????????
startsWith
public class Stringutil {
public static void main(String[] args) {
String path = "/opt/bin";
System.out.println(path.startsWith("/"));
}
}
?????????true
????indexOf
??????????
/**
* ????·?????????????·??????·??????true?????
*
* @param path
* @return
* @since  2015??4??21??
*/
public boolean isAbsolutePath(String path) {
if (path.startsWith("/") || path.indexOf(":") > 0) {
return true;
}
return false;
}