• input.nextLine() 问题出错!


    今天在学习关于I/O的知识的时候发现了一个小问题!

    代码如下

    package com.paulo.testio;
    
    import java.io.File;
    import java.io.IOException;
    import java.io.PrintWriter;
    import java.util.Scanner;
    
    public class TestFile {
    	public static void main(String[] args) throws IOException {
    		PrintWriter output = new PrintWriter("temp.txt");
    		output.print("Java");
    Scanner input = new Scanner(new File("temp.txt")); System.out.println("ok"); System.out.println(input.nextLine());
                
              
              output.close(); input.close(); } }

    Exception in thread "main" java.util.NoSuchElementException: No line found
        at java.util.Scanner.nextLine(Unknown Source)
        at com.paulo.testio.TestFile.main(TestFile.java:17)

     而我在stackflow上或是在其它的网站上面找到的答案大多是说要先判断异常!!等等:like this

    ------------------------------------------------------------------------------------------------------------------------------------------------------------

    package com.paulo.testio;
    
    import java.io.File;
    import java.io.IOException;
    import java.io.PrintWriter;
    import java.util.Scanner;
    
    public class TestFile {
    	public static void main(String[] args) throws IOException {
    		PrintWriter output = new PrintWriter("temp.txt");
    		output.print("Java");
    		 output.close();
    
    		Scanner input = new Scanner(new File("temp.txt"));
    		 while (input.hasNextLine()) {        //加一个循环用来判断
    		System.out.println("ok");
    		System.out.println(input.nextLine());
    		 }
    
    		input.close();
    
    	}
    
    }
    
    对的这样写完之后是没有error了,,极好,,可是没有答案的输出!!!

    后来在我的研究之下发现了一点端倪!!!!
    把代码改成下面的即可!
    PrintWriter output = new PrintWriter("temp.txt");
    		output.print("Java");
    	        output.close();           //在还没有关闭文件时文件里面什么都没有,,所以读不出东西
    
    		Scanner input = new Scanner(new File("temp.txt"));
    		
    		System.out.println("ok");
    		System.out.println(input.nextLine());
    		
    
    		input.close();
    
  • 相关阅读:
    Vue项目部署,清理缓存方式(亲测有效)
    WebService与WebApi的区别
    [20220413 java] @JsonFormat失效问题
    delphi dll 注入弹dll内的窗口
    JS对象的创建与遍历
    魔方
    其疾如风,其徐如林,侵掠如火,不动如山,难知如阴,动如雷霆
    上兵伐谋其次伐交
    一朝沐杏雨,一生念师恩
    若不是为了碎银几两,谁愿颠沛流离,把青春留在他乡
  • 原文地址:https://www.cnblogs.com/airfand/p/5471556.html
Copyright © 2020-2023  润新知