Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Reading files with Intellij idea IDE

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:

Screenshot of IntelliJ

like image 791
ashimashi Avatar asked Nov 15 '14 19:11

ashimashi


People also ask

How do I change the reader mode in IntelliJ?

Reader mode Use this checkbox to enable or disable the option. in the gutter or press Ctrl+Alt+Q .

How do I fix read only files in IntelliJ?

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 .


2 Answers

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:

  1. src/test123.txt

  2. FirstJavaProgram/src/test123.txt

I am not sure which one will be fine in your case.

like image 123
azalut Avatar answered Sep 20 '22 19:09

azalut


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 
like image 26
Makoto Avatar answered Sep 20 '22 19:09

Makoto