I have the following directory server/auth/usernames.txt
and i want to read all lines and find a specific index of the string called clientusername
I have the following piece of code
File dirFile = new File("auth/");
String clientUsername ="john";
int indexUsername = Files.readAllLines(Paths.get(dirFile.getAbsolutePath() + "usernames.txt")).indexOf(clientUsername);
but this gives me the full path of server/auth/usernames.txt
. I want only to get auth/usernames.txt
. How to achieve this?
与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…