Similar Posts

Subscribe
Notify of
23 Answers
Oldest
Newest Most Voted
Inline Feedbacks
View all comments
tide1109
1 year ago

Since you work with relative paths, it depends heavily on the Working Directory.

How do you run the program? About the Play Button in IntelliJ?

When you process configuration behind the execution, you will find the parameter from the Working Directory. Probably it will be the folder “Maven”.

The current view of IntelliJ will dictate you. You have currently opened the “Packages” view, which does not necessarily represent the folder structure from the Working Directory.

The actual path is src/main/java/de/thws/Lektion17/Folder.jpg. This is also the usual folder structure for Java projects.

By the way, you can also use normal / in the path under Windows.

I always use the “Project” structure in IntelliJ. You can also find the src/main folder.

You could also make a right-click on your file in IntelliJ, Copy Path/Reference…, and then choose Path from Content Root. With this you have the relative path to the main order project, which is the standard of the Working Directory.

Screenshot for the comment:

tide1109
1 year ago

Have added a screenshot to my answer. The project structure can be found at the left red rectangle, as you have probably already found.

The keyboard shortcut will perform the same function as the Play button.

On the right side with the red rectangles, you can adjust the configuration to run.

In the popup menu after Edit Configuration you will find a text box for Working Directory.

Lezurex
1 year ago

Maven\ you can remove, because you’re in there.

Destranix
1 year ago

By default the classes in the

java.io

package always resolve relative pathnames against the current user directory. This directory is named by the system property

user.dir

, and is typically the directory in which the Java virtual machine was invoked.

https://docs.oracle.com/en/java/javase/18/docs/api/java.base/java/io/File.html

Destranix
1 year ago
Reply to  RedDevil1982

I think your path is wrong. Try something about it.

Destranix
1 year ago

tide1109 explains in his answer how it is:

Destranix
1 year ago

I don’t know, I don’t use InteliJ. Evtl. can you change this in the settings somewhere?

Otherwise, ask a new question, maybe someone knows more.

Destranix
1 year ago

I don’t know.

However, this tells you something else: your relative path begins in the src folder. Therefore, your relative path has not worked before.

Try a relative path from the src folder. And you can also create your output file directly in a subfolder with appropriate path indication.

Destranix
1 year ago

Then you might have renamed the folder from “Lektion17” to “lektion17” and the IDE hasn’t updated it yet? And your real path isn’t going because you wrote it big?

Destranix
1 year ago

The large/small spell does not fit.

Destranix
1 year ago

Try an absolute path. Let the reference directory be output. …