gpt4 book ai didi

java - 找不到 nextline/int 的行

转载 作者:行者123 更新时间:2023-12-02 05:02:10 25 4
gpt4 key购买 nike

我尝试让用户在 while 循环中输入 string 和 int 中的一些值,但是,当我开始时,我没有找到 Line ,我尽力自己解决它,但没有任何效果。我想知道如何让用户输入 int 和 string 的值。

public static void main(String[] args) throws IOException {
// TODO code application logic here

int saldo = 10000;
String anw = "j";
int cost;


//create file
File f = new File("C:\\Users\\ae65255\\Desktop\\file.txt");
try{


f.createNewFile();
System.out.println("23");
//frågan
while(anw.equals("j")){

Scanner fileIn = new Scanner(f);
System.out.println("Ange utgiftspost:"); //post
String post = fileIn.nextLine();
System.out.println("Ange kostnad:"); //kost
cost=fileIn.nextInt();
fileIn.nextLine();
saldo = +saldo -cost;
System.out.println("saldo:" +saldo);
System.out.println("Vill du mata in fler uppgifter? (j/n) :");
anw = fileIn.nextLine();
String fileContent = "---"+post+"---"+cost+"---"+saldo;
PrintWriter writer ;
writer = new PrintWriter(f);
writer.println(fileContent);


if (anw.equals("n")) {
fileIn.close();
writer.close();
//System.out.println("---"+post+"---"+cost+"---"+saldo);

}
} //frågan slut


}
catch(Exception e){
System.err.println(e.getMessage());
}//frågan
//System.out.println("---"+post+"---"+cost+"---"+saldo);
System.out.println("File path" +f.getPath());

}


}

最佳答案

@AKSW 评论解决了我的两个答案。使用 Scanner in = new Scanner(System.in); 可以让我从控制台获取用户输入。另一个是阻止它覆盖他最新的文本comment在这篇文章中。

关于java - 找不到 nextline/int 的行,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/56380519/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com