Reputation: 483
I am a long time eclipse user and I have started to play around with IntelliJ IDEA.
So from my understanding, a project in IntelliJ is the same as the Eclipse workspace. Additionally, a module in IntelliJ is the equivalent of a project in Eclipse.
I created a project in IntelliJ, but I’m still not sure why there is a src
folder in it if it is supposed to be a workspace.
Afterwards, I created a module in the project and a class inside the src
directory of the new module with this code:
import java.io.File;
import java.io.FileNotFoundException;
import java.util.Scanner;
public class MainClass {
public static void main(String[] args) throws FileNotFoundException {
System.out.println("Hello World!");
Scanner input = new Scanner(new File ("test123.txt"));
String answer = input.nextLine();
System.out.println(answer);
}
}
The problem is that I get an error trying to read the file. I tried putting the .txt file inside my src file which is located inside the module and outside the src
directory but inside the module. But in both cases the file is not found. Yes the code works, I tried it on Eclipse and it works fine. The file name is spelled correctly as well.
Here is a picture of my project/workspace if it is helpful:
Upvotes: 38
Views: 115557
Reputation: 21
u need to specify complete path inside quotes something like this-->
import java.io.File;
import java.io.FileNotFoundException;
import java.util.Scanner;
public class Application {
public static void main(String[] args) throws FileNotFoundException {
File file = new File("E:\\coding\\ProcessingFiles\\src\\myfile.txt");
Scanner input = new Scanner(file);
while (input.hasNextLine()){
String line = input.nextLine();
System.out.println(line);
}
input.close();
}
}
Upvotes: 2
Reputation: 2901
Run
> Edit Configurations
Configuration
tab
Working directory
: Your file path is relative to this.Hope this help!
Upvotes: 2
Reputation: 4234
Just move the file directly to the project folder which calls Java (and something under the blue-blurred stripe you made :P).
If that doesn't help, then move the test123.txt
file to FirstJavaProgram
directory.
You can also change filename to one of these:
src/test123.txt
FirstJavaProgram/src/test123.txt
I am not sure which one will be fine in your case.
Upvotes: 39
Reputation: 151
Yesterday I met the same trouble as you.
change the setting of IDEA. run->Edit Configurations -> (select your Application at left window.then set the input content named "Working directory" at right window)
Upvotes: 15
Reputation: 1986
Instructions
File myFile = new File("./resources/images/newfile.txt");
Upvotes: 5
Reputation: 885
create directory "files" make all files inside this directory. Select the directory and click right select -> Mark Directory As -> Resources Root :)
Upvotes: 6
Reputation: 106430
Use the full path of the file instead.
Right click on your file in your project, select "Copy Path", and paste that in to the path of your file.
EDIT: You could also use a relative path for your file. If your file is located in resources/
, then you could use the form ./resources/yourfile.txt
.
├── resources
│ └── test123.txt
└── src
├── MainClass.java
Upvotes: 26