我需要找到用戶的vlc.exe文件的路徑。 我該怎麼做?Java - 查找文件的絕對路徑
我讀到這http://docs.oracle.com/javase/tutorial/essential/io/find.html和使用像
PathMatcher match = FileSystems.getDefault().getPathMatcher("glob:vjlc.{exe, jpg, png}");
Path filename = FileSystems.getDefault().getPath("vjlc.exe","");
if(match.matches(filename))
{
System.out.println(filename);
}
和
File fil = new File("vlc.exe");
System.out.println(fil.getAbsolutePath());
這兩者都不曾
你的代碼在哪裏?你做了什麼? – 2012-02-11 13:10:43
您是否意識到您正在嘗試在第一個代碼示例中查找「vjlc.exe」(注意額外的'j')路徑? – 2012-02-11 13:16:39
*「需要找到用戶vlc的路徑。exe文件「* 1)爲什麼?2)如果用戶沒有安裝VLC會怎麼樣? – 2012-02-11 13:19:48