0
public class FrameViewer
{

    String csvName = "none";
    public static void main(String[] args)throws IOException
    {
        System.out.println("Which file would you like to open?" + " A - asia.csv" + " B - europe.csv" + " C - africa.csv");
        Scanner input = new Scanner(System.in);
        String csvName = input.next();

        if (csvName.equals("A"))
            csvName = "asia.csv";
        else if (csvName.equals("B"))
            csvName = "europe.csv";
        else if (csvName.equals("C"))
            csvName = "africa.csv";
        else
            System.out.println("You havent chosen a file.");

在这里之间是我遇到问题的地方,我假设当在下面创建画布时,CountryComponent 类将在 CountryComponent 方法中从所做的选择中引用“csvName”,但它没有

我现在完全迷路了,我想尝试将选择作为参数传递给 getData 方法,但我不知道如何传递选择本身,我一直收到错误

我将实例变量 csvName 留在了组件类中,因为它可能会导致问题,但是 idk,没有它它不会让我编译。

        JFrame frame = new JFrame();
        frame.setSize(750, 650);
        frame.setTitle("Country Data");
        CountryComponent canvas = new CountryComponent();
        frame.add(canvas);
        frame.setDefaultCloseOperation (JFrame.EXIT_ON_CLOSE);
        frame.setVisible(true);
    }
}

组件类

public class CountryComponent extends JComponent
{

    // instance variables

    String csvName;   

    public void CountryComponent()throws IOException
    {

        getData(); 

    }

    public void getData()throws IOException
    {
       ...

这是我尝试过的,最后一次尝试,我尝试了 20 种不同的方法来尝试获取信息以实际显示。

 public void CountryComponent(String test)throws IOException
{
    String csv = test;
    getData(csv); 

}

public void getData(String csv1)throws IOException
{
    try
    {
        csvName = csv1;
        File csvFile = new File(csvName);

编译但 FrameViewer 类中的这一行给出了错误

CountryComponent canvas = new CountryComponent(csvName);
4

1 回答 1

0

构造函数必须没有void. 它没有返回类型。

public CountryComponent() throws IOException
{
...
}

public CountryComponent(String test) throws IOException {
...
}
于 2013-10-29T22:10:04.943 回答