gpt4 book ai didi

java - 循环创建按钮

转载 作者:行者123 更新时间:2023-11-30 05:06:05 26 4
gpt4 key购买 nike

我需要在一个更大的类中创建两个类。从文本文件中获取信息的格式如下:字符串:双

字符串:双

...

并输出两个变量。第二个类获取此信息并循环,以每个文本条目作为标签创建按钮。到目前为止我的代码是:

public class MainClass {
Scanner readFile = new Scanner(new File("text.txt"));
while (fileScanner.hasNext()) {
String name = readFile.next();
double value = readFile.nextDouble();
}
class Button {
Button(String text. double number) {
this.text=text;
this.number=number;
}
}
}

我该如何离开这里?

最佳答案

不是答案,但这里修改了 OP 的代码,以便编译

import java.io.File;
import java.io.FileNotFoundException;
import java.util.Scanner;

import javax.swing.JButton;

public class MainClass {
class ScanFile {
void Foo() throws FileNotFoundException{
Scanner readFile = new Scanner(new File("text.txt")); // don't forget to catch FileNotFoundException!
readFile.useDelimiter(":|\\n");
while (readFile.hasNext()) {
String name = readFile.next();
double value = readFile.nextDouble();
System.out.println(name + " " + value);
}
}
}
class Button extends JButton {
String text;
double number;
Button(String text, double number) {
super(text);
this.text=text;
this.number=number;
}
}
}

关于java - 循环创建按钮,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/5046887/

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