我正在开发一个打开不同文件的新程序。问题是,当我更换计算机并且需要打开文件时,他们没有,因为计算机无法找到这些文件。有没有办法让文件即使在另一台计算机上也可以访问?我的意思是文件位于项目内的文件夹中,但是当您在新计算机上打开它时,路径会发生变化。
File myFile = new File("C:\\Users\\Usuario\\Documents\\NetBeansProjects\\Info12\\src\\info12\\Dokumente\\Aufgaben\\Bubblesort.docx");
答案 0 :(得分:0)
在Maven项目中,您的所有文件都在public partial class MyWindow : Window
{
private MainWindow mainwindow;
public MyWindow(MainWindow mainwindow)
{
InitializeComponent();
this.mainwindow = mainwindow;
this.MinWidth = 450;
this.MinHeight = 200;
this.MaxWidth = 450;
this.MaxHeight = 200;
// Other Methods Here
}
// Other Methods Here
}
中:
的src /主/资源/ info12 /文件/ Aufgaben / Bubblesort.docx
您的Java代码是:
src/main/resources
更聪明:
File myFile = new File("src\\main\\resources\\info12\\Dokumente\\Aufgaben\\Bubblesort.docx")