打开文本文件麻烦

时间:2011-09-05 18:56:43

标签: java io

我尝试从目录中读取文本文件,但除非我将文本文件导入到我的java项目的src中,否则它不会打开,这不是我想要的 我想读取来自某个目录的文本文件

import java.awt.BorderLayout;
import java.awt.Dimension;
import java.io.*;

import javax.swing.*;
public class A{
    public static void main(String[] args)throws Exception{
        String path="C:/My documents/file.txt";
        File F=new File(path);

          try{
            FileInputStream ips=new FileInputStream(F);//ou InputStream
            InputStreamReader ipsr=new InputStreamReader(ips);//
            BufferedReader br=new BufferedReader(ipsr);//lire les lignes
            String ligne[]=new String[7];

            for (int i=1;i<ligne.length;i++)
            {
                ligne[i]=br.readLine();
                        System.out.println(ligne[i]);
            }

        br.close();

            }
            catch(Exception e1){System.out.println("error");    }

    }
}

1 个答案:

答案 0 :(得分:2)

如果它的窗口应该是:

  String path="C:\\My documents\\file.txt";