Servus,
ich will die Informationen einer Datei auslesen, jedoch hab ich das Problem das es mir immer eine InvocationTargetException wirft. Ich komm nicht mehr weiter. Warum kommt die Excepiton und wie kann ich sie verhindern?
ich will die Informationen einer Datei auslesen, jedoch hab ich das Problem das es mir immer eine InvocationTargetException wirft. Ich komm nicht mehr weiter. Warum kommt die Excepiton und wie kann ich sie verhindern?
Java:
@FXML
void buttonKopieren(ActionEvent event) throws IOException {
a = new File(ziel.toString()+ File.separator + quelle.getName());
System.out.println("Neues Zielfile: " + a.toString());
infos = a.toPath();
fileInfo fi = new fileInfo();
System.out.println(infos.toString());
fi.info(infos.toString());
BasicFileAttributes view = Files.readAttributes(infos, BasicFileAttributes.class);
System.out.println("Erzeugt: " + view.creationTime());
//System.out.println("Letzte...: " + view.lastAccessTime());
//System.out.println("Letzte Änderung: " + view.lastModifiedTime());
//System.out.println("Größe: " + view.size());