Java初学者在这里,但我真诚地尝试。该程序的目标是从Realtor11.txt文件中读取两个值,并将它们分配给变量。

Realtor11.txt的内容为(无空格):

约翰

100

参见“ //阅读Realtor11.txt”部分不确定我在做什么错,但是当前错误是

Realtor11.java:48:错误:类型不兼容
            价格= in.readLine();
                               ^
  需要:双
  找到:字符串
1个错误
错误:找不到或加载主类Realtor11
[在1.1秒内完成]

// java class for keyboard I/O
import java.util.Scanner;
// java class for JOption GUI
import javax.swing.JOptionPane;
// File reader
import java.io.BufferedReader;
import java.io.FileReader;
import java.io.IOException;
import java.io.InputStream;

public class Realtor11
{
    public static void main(String[] args)
    {
    // Keyboard and file input
        Scanner console = new Scanner(System.in);
        Scanner inputStream = null;
    // price of the house, the cost to sell the house and the commission
        double price, cost, commission;
    // seller’s name
        String seller;

    // GUI diplay message declaration
        String display_message = "This program calculates the cost to sell a home\n"
        + "and the commission paid to an individual sales agent.\n\n"
        + "The user is asked for the last name of the seller and the\n"
        + "sales price.\n\n";

    // Output descriptive messages
        JOptionPane.showMessageDialog(null, display_message, "Lab 1 Description", JOptionPane.INFORMATION_MESSAGE);

    // Read Realtor11.txt
        try {
            BufferedReader in = new BufferedReader(new FileReader("Realtor11.txt"));
            while (in.read()!= -1);
            seller = in.readLine();
            price = in.readLine();
            in.close();
            }
            catch (IOException e) {}

    // calculate the cost and the commission
        cost = 0.06 * price;
        commission = 0.015 * price;
    // display the input and results
        String
            out1 = String.format("%nThe " + seller + "’s" + " home sold for $%.2f%n", price),
            out2 = String.format("The cost to sell the home was $%.2f%n", cost),
            out3 = String.format("The selling or listing agent earned $%.2f%n", commission);

        JOptionPane.showMessageDialog(null, out1 + out2 + out3, seller + "'s Home Sale", JOptionPane.INFORMATION_MESSAGE);

    // Output to file
    // still writing this.

    }
}

最佳答案

方法readLine()在您期望String值(see API)的情况下返回double值。您必须这样将String值转换为double

price = Double.parseDouble(in.readLine());

10-06 08:53