1

我想重新打开一个文件。我在输入流中有一个文件。我尝试过使用 Scanner 和 BufferedReader。但是在使用 close() 方法关闭文件后,我无法再次打开文件。请帮助如何再次打开文件。我写了下面的代码:

InputStream filename = getAttachstream();

        int rows =0 ;

        BufferedReader br= new BufferedReader(new InputStreamReader(filename));
        String strLine = "";
          try {
            while( (strLine = br.readLine()) != null) {
                rows++;
              }
            //br.reset();
            br.close();
            //br.reset();
        } catch (IOException e) {
            // TODO Auto-generated catch block
            e.printStackTrace();
        }
if(rows>0){
            InputStream filename1 = getAttachstream();
            Scanner inputStream1 = new Scanner(filename1);
                for (int rowIncr = 1; inputStream1.hasNext(); rowIncr++) {

                String data;
                try {
                    data = br.readLine();
                } catch (IOException e) {
                    // TODO Auto-generated catch block
                    e.printStackTrace();
                }
                String [] values = data.split(",");
                String curRowPartNumber = values[0];
                String curRowQuantity =   values[1];
                if(rowIncr == 1)
                {
                    if((values[0]==null || values[0].trim().length()<=0)
                            || (values[1]==null || values[1].trim().length()<=0)
                            || (values[2] != "") || !"Part Number".equalsIgnoreCase(values[0].trim())
                            || !"Quantity".equalsIgnoreCase(values[1].trim())){
                        System.out.println("Invalid Excel sheet data");
                        throw new ECApplicationException(ECMessage._ERR_CMD_INVALID_DATAFORMAT, CLASSNAME,methodName);
                    }

                }
4

3 回答 3

6

一旦流、读取器、写入器、套接字或任何其他资源关闭,您就无法再次打开它。

如果你想多次读取一个文件,你需要有它的文件名。

于 2012-09-10T08:31:10.287 回答
1

我假设您的意思是重新打开您从中获得的 InputStream getAttachstream(即使它没有显示它来自文件)。

唯一的选择是getAttachstream返回一个实现这种方法的类。请记住,甚至FileInputStream不提供此类选项。而且,即使您找到具体的类并且它碰巧有这样一个方法,因为该方法的定义返回一个InputStream您不能确定它总是会返回同一个类(甚至在所有情况下都会返回)类返回)。

唯一的选择是使用原始 inputStream 并将其写入临时文件或 a ByteArrayOutputStream(如果文件足够小而不会使用太多内存),因此您可以多次访问数据。

于 2012-09-10T08:34:00.020 回答
0

您可以使用扫描仪来计算行数Scanner.hasNextLine()

如果此扫描仪的输入中有另一行,则返回 true。此方法可能会在等待输入时阻塞。扫描仪不会超过任何输入。

    File file = new File("C:/test.txt");
    File file1 = new File("C:/test1.txt");

    Scanner scanner;
    try {
        FileInputStream fileInputStream = new FileInputStream(file);
        FileInputStream fileInputStream1 = new FileInputStream(file1);
        scanner = new Scanner(fileInputStream);
        int count = 0;
        while (scanner.hasNextLine()) {
            String line = scanner.nextLine();
            count++;
        }
        scanner.close();
        System.out.println("File 1 Count:" + count);
        scanner = new Scanner(fileInputStream1);
        count = 0;
        while (scanner.hasNextLine()) {
            String line = scanner.nextLine();
            count++;
        }
        System.out.println("File 2 Count:" + count);
        scanner.close();
    } catch (FileNotFoundException e) {
        // TODO Auto-generated catch block
        e.printStackTrace();
    }
于 2012-09-10T08:34:05.240 回答