我一直在做功课,但我遇到了问题。我的代码从txt文件中扫描有关书籍(作者,标题等)的一些信息,然后打印出来。首先,我尝试打印作者,标题,ISBN代码,页数,然后是15 *页数的书籍价格。它到目前为止工作,但我想为每本书添加一个数字,所以它就像一个列表。但是当我修改代码以添加这些数字时,代码并不想扫描它们。它说
int无法转换为String
我出于好奇而尝试将数字扫描为字符串,但随后出现错误信息
String无法转换为int
My Book课程:
public class Book {
private int number;
private String author;
private String title;
private String code;
private int pages;
private static int multiplier = 15;
public Book(String author, String title, String code, int pages, int number) {
this.number = number;
this.author = author;
this.title = title;
this.code = code;
this.pages = pages;
}
@Override
public String toString() {
return author + " - " + title + ", ISBN:" + code + ", " + pages + " pages, Price: " + price() + "Ft";
}
public int price() {
return multiplier * pages;
}
public static int getMultiplier() {
return multiplier;
}
public static void setMultiplier(int multiplier) {
Book.multiplier = multiplier;
}
public int getNumber() {
return number;
}
public String getAuthor() {
return author;
}
public String getTitle() {
return title;
}
public String getCode() {
return code;
}
public int getPages() {
return pages;
}
}
我的"控制器"类:
public class Controller {
void start() {
scanning();
printing("Avilable books: ");
}
private List<Book> books = new ArrayList<>();
private void scanning() {
try {
Scanner fajlScanner = new Scanner(new File("books.txt"));
String row;
String data[];
while (fajlScanner.hasNextLine()) {
row = fajlScanner.nextLine();
data = row.split(";");
//1;J.K. Rowling;Harry Potter and the Philosopher's Stone;1782637594826;342
//this line below gives the error for the data[0]
books.add(new Book(Integer.parseInt(data[0]), data[1], data[2], data[3], Integer.parseInt(data[4])));
}
} catch (FileNotFoundException ex) {
Logger.getLogger(Controller.class.getName()).log(Level.SEVERE, null, ex);
}
}
private void printing(String title) {
System.out.println(title);
for (Book book : books) {
System.out.println(book);
}
}
}
我的txt的内容:
1;J.K. Rowling;Harry Potter and the Philosopher's Stone;1782637594826;342
2;J.R.R. Tolkien;The Fellowship of the Ring;1827493762573;431
3;Stephen King;Needful Things;8274653821647;411
4;Eric Knight;Lassie Come-Home;7263845618293;138
5;Molnár Ferenc;A pál utcai fiúk;9283746192846;194
6;Winston Groom;Forrest Gump;0385231342;228
7;Antoine de Saint-Exupéry;The Little Prince;8362748172649;69
8;Stephen King;Cujo;2918467382914;362
我可以很好地扫描页面,但是#34;数字&#34;有一些问题。
答案 0 :(得分:2)
检查您是否以正确的顺序向Book-constructor提供了正确的参数。
构造函数:
public Book(String author, String title, String code, int pages, int number)
您的对象创建:
new Book(Integer.parseInt(data[0]), data[1], data[2], data[3], Integer.parseInt(data[4]))
你能发现错误吗?
答案 1 :(得分:1)
您的输入是:1; J.K。罗琳;哈利波特与哲学家的石头; 1782637594826; 342
你的构造函数是:
public Book(String author, String title, String code, int pages, int number){
/*.
.
.*/
}
输入的第一个字符是“1”,它是一个整数但在构造函数中第一个参数是String
。这就是错误出现的原因。根据构造函数,“1”必须位于输入的末尾。
为每本书设置一个数字,使用一个额外的static
变量,将其初始化为1,每次要添加一本书时,为该书的编号设置静态变量的当前值,然后{{ 1}}它。
++
祝你好运