Path FROM = Paths.get // need to get my file in my bin folder called s.txt, how would this be done?
Path TO = Paths.get("C:\\Temp\\to.txt");
try {
Files.copy(FROM, TO);
} catch (IOException e) {
e.printStackTrace();
}
您好,我真的很感激幫助,我基本上需要得到位於我/bin/path
Java在我的項目/ bin /文件夾中獲取文件的路徑?
你怎麼能得到的路徑確定,但不是從? –
'Path FROM = Paths.get(「C:\\ bin \\ s.txt」);'不工作? –
爲什麼呢?我試圖從我的項目中獲取文件,不知道它在Java中稱爲什麼,但在大多數其他語言中稱爲參考。 – user3000453