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

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

FileNotFoundException:系統(tǒng)找不到指定的文件

FileNotFoundException:系統(tǒng)找不到指定的文件

叮當(dāng)貓咪 2019-11-05 12:04:44
FileNotFoundException:系統(tǒng)找不到指定的文件我有一份名為“word.txt".它位于與我的目錄相同的目錄中。java檔案。但是,當(dāng)我試圖在下面的代碼中訪問(wèn)它時(shí),找不到文件錯(cuò)誤發(fā)生:Exception in thread "main" java.io.FileNotFoundException: word.txt  (The system cannot find the file specified)     at java.io.FileInputStream.open(Native Method)     at java.io.FileInputStream.<init>(Unknown Source)     at java.util.Scanner.<init>(Unknown Source)     at Hangman1.main(Hangman1.java:6)這是我的密碼:import java.io.File;import java.util.*;public class Hangman1 {     public static void main(String[] args) throws Exception {         Scanner input = new Scanner(new File("word.txt"));                   String in = "";                  in = input.nextLine();               }}
查看完整描述

3 回答

?
LEATH

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

可以使用相對(duì)路徑,但它們可能很棘手。最好的解決方案是知道您的文件保存在哪里,即打印文件夾:

import java.io.File;import java.util.*;public class Hangman1 {

    public static void main(String[] args) throws Exception {
        File myFile = new File("word.txt");
        System.out.println("Attempting to read from file in: "+myFile.getCanonicalPath());

        Scanner input = new Scanner(myFile);
        String in = "";
        in = input.nextLine();
    }}

此代碼應(yīng)打印它要查找的文件夾。把文件放在那里,你就可以走了。



查看完整回答
反對(duì) 回復(fù) 2019-11-06
?
炎炎設(shè)計(jì)

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

您的文件應(yīng)該直接位于項(xiàng)目文件夾下,而不是在任何其他子文件夾中。

如果您的項(xiàng)目的文件夾被命名為。AProject,它應(yīng)該和你的在同一個(gè)地方src文件夾。

Aproject
        src
        word.txt


查看完整回答
反對(duì) 回復(fù) 2019-11-06
  • 3 回答
  • 0 關(guān)注
  • 1209 瀏覽

添加回答

舉報(bào)

0/150
提交
取消
微信客服

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

幫助反饋 APP下載

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

公眾號(hào)

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