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:
Reader mode Use this checkbox to enable or disable the option. in the gutter or press Ctrl+Alt+Q .
To toggle read-only attribute of a file, open file in the editor, or select it in the Project tool window. Do one of the following: On the main menu, choose File | File Properties | Make File Read-Only , or Make File Writable .
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.
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
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With