I would like to know if there is any Java function that checks whether the string is a relative path or not:
Ex:
String caminho = funcao("\pasta\arquivo.xml") // retorna true que é um caminho relativo
String caminho2 = funcao("c:\pasta\arquivo.xml") // retorna false não é caminho relativo
Or if there is already some function that I pass the string it returns me the complete path:
Ex:
String caminho3 = funcao("\pasta\arquivo.xml"); // retorno: c:\pasta\arquivo.xml
String caminho4 = funcao("c:\pasta\arquivo.xml"); // retorno: c:\pasta\arquivo.xml