intellij-idea系统找不到指定的文件,

时间:2015-01-16 11:08:08

标签: java eclipse intellij-idea

有人能帮帮我吗?我对编程很陌生,我决定尝试从eclipse尝试IDEA,我遇到了一个问题,我从eclipse导入了一个可以工作的项目,但是在IDEA中,我不能像在eclipse中那样重写我的res文件夹就像我不能使用res / image.png我只能做c:\ ect。谁知道为什么?我已将res文件夹设置为资源根目录。

1 个答案:

答案 0 :(得分:3)

对于像这样的项目结构:

project
|
| -> src
|    |
|    | -> directory
|    |    |
|    |    | -> MyClass.java
|    |    |
|    |    | -> file.txt

使用以下代码读取MyClass.java中的文件

import java.io.*;

class MyClass {

    public static void main(String... args) {

        try {

            BufferedReader br = new BufferedReader(new FileReader("src/directory/file.txt"));

            // read your file 

        } catch (FileNotFoundException e) {

            e.printStackTrace();

        } catch (IOException e) {

            e.printStackTrace();

        } catch (Exception e) {

            e.printStackTrace();

        }

    }

}