第七色在线视频,2021少妇久久久久久久久久,亚洲欧洲精品成人久久av18,亚洲国产精品特色大片观看完整版,孙宇晨将参加特朗普的晚宴

為了賬號(hào)安全,請(qǐng)及時(shí)綁定郵箱和手機(jī)立即綁定
已解決430363個(gè)問題,去搜搜看,總會(huì)有你想問的

無法為本學(xué)期的最后一個(gè)實(shí)驗(yàn)室正確讀取文件,并且在讀取實(shí)際文件時(shí)一直遇到問題

無法為本學(xué)期的最后一個(gè)實(shí)驗(yàn)室正確讀取文件,并且在讀取實(shí)際文件時(shí)一直遇到問題

阿波羅的戰(zhàn)車 2022-12-15 14:40:40
所以我們有一個(gè)實(shí)驗(yàn)室要做,它涉及讀取文件和所有有趣的東西。這是 txt 文件的樣子:Name0221.2Name1222.71Name2193.51Name3183.91Name4201.6Name5191.03Name6183.78Name7193.19Name8182.37Name9211.01我發(fā)布了應(yīng)該嘗試讀取此信息的代碼。謝謝你的時(shí)間!我試過改變一些東西并用谷歌搜索異常但沒有運(yùn)氣    public void readFile()    {        //ran intill exception caught        try        {            //finds the student.txt file to read using scanners            Scanner s = new Scanner("Students.txt");            while(s.hasNextLine())            {                //sets a string name to the first string (First text in students is name)                String name = s.next();                //looks for a line with a int value and then sets it to age                int age = s.nextInt();                 //scans the next line for a double and sets it to gpa                double gpa = s.nextDouble();                //creates a new student object and passes what the file read into parameters                Student studentOne = new Student(name , age, gpa);                //adds new student to array list                students.add(studentOne);            }            s.close();        }        // if an exception is caught it will print        catch(Exception e)        {            System.out.println(e);        }    }我相信它應(yīng)該讀取信息并將其存儲(chǔ)在受尊重的類別中,因?yàn)槲覀冎浪歉鶕?jù)文本文件按此順序進(jìn)行的,但是當(dāng)我運(yùn)行該方法時(shí),我得到了 java.util.NoSuchElementException
查看完整描述

1 回答

?
躍然一笑

TA貢獻(xiàn)1826條經(jīng)驗(yàn) 獲得超6個(gè)贊

您收到NoSuchElementException是因?yàn)樵趯?duì)象上調(diào)用nextInt()和nextDouble()方法Scanner不會(huì)讀取換行符(點(diǎn)擊返回時(shí)創(chuàng)建的字符) - 請(qǐng)參閱此答案。


要解決此問題,您可以執(zhí)行以下操作:


public void readFile() throws IOException {

    try (Scanner s = new Scanner(new FileReader(new ClassPathResource("Students.txt").getFile()))) {

        while (s.hasNextLine()) {

            String name = s.nextLine();

            int age = Integer.parseInt(s.nextLine());

            double gpa = Double.parseDouble(s.nextLine());

            Student studentOne = new Student(name, age, gpa);

            students.add(studentOne);

        }

    }

}

注意 - 上面的代碼假定該Students.txt文件在您的類路徑中。


查看完整回答
反對(duì) 回復(fù) 2022-12-15
  • 1 回答
  • 0 關(guān)注
  • 101 瀏覽

添加回答

舉報(bào)

0/150
提交
取消
微信客服

購課補(bǔ)貼
聯(lián)系客服咨詢優(yōu)惠詳情

幫助反饋 APP下載

慕課網(wǎng)APP
您的移動(dòng)學(xué)習(xí)伙伴

公眾號(hào)

掃描二維碼
關(guān)注慕課網(wǎng)微信公眾號(hào)