I have string:
String s = "~/abc/d.png"
How can I get absolute path of this file?
I’ve tried:
File file = new File(s);
String absolutePath = file.getAbsolutePath();
But it can’t reslove ~ symbol.
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
Java isn’t going to know what the
~means since it’s a shell expansion for your home directory. You can do this before handing it off toFile: