从另一个类的函数返回中分配对象值?

时间:2012-06-11 04:54:33

标签: java function interface static

因此,在完成最后一次分配后,我被指示接受该代码并将其从命令行参数更改为从文件中读取数据。这一切都很好,除了我应该有一个函数接口的部分,该函数调用文件中的数据,然后做与以前相同的事情。

现在,我的驱动程序类中的对象数组是SUPPOSED,用于分配DAO类所采用的值。 DAO类基于接口。驱动程序类正在尖叫我,我创建的对象必须从DAO类中的静态函数赋值,但该方法不能是静态的...

这次我错过了什么?..

接口:

public interface ScanTextFile {

    public Object[] readTextData() throws FileNotFoundException;
}

DAO班级:

public class StudentDAO implements ScanTextFile {

    public Object[] readTextData() throws FileNotFoundException {

        Student[] studentRecord = new Student[3];

        String dataFileName = "data.txt";
        int numberOfRows = 0;

        File dataFile = new File(dataFileName);
        Scanner scan = new Scanner(dataFile);
        int i = 0;
        String delim = "\\|";

        // checks number of rows in data file, making sure there are 3 total
        for(i = 0; scan.hasNextLine(); i++){
            numberOfRows++;
        }
        if(numberOfRows < 3){
            System.err.format((numberOfRows) + " argument(s) - expected 3");
            System.exit(0);
        } else if(numberOfRows > 3){
            System.err.format((numberOfRows) + " arguments - expected 3");
            System.exit(0);
        }

        for(i = 0; i < numberOfRows; i++){
            if(scan.hasNextLine()){
                String temp = scan.nextLine();
                String[] tempData = new String[4];
                Student tempStudent = null;

                for(i = 0; i < tempData.length ; i++){
                    tempData = temp.split(delim);
                }
                System.out.println("DEBUG *** Finished extracting data, creating object...");
                System.out.println("DEBUG Student Data = [�" + temp + "]");

                GregorianCalendar date = new GregorianCalendar();
                try {
                    date = DateUtil.convertFromDMY(tempData[3]);
                } catch (ParseException e1) {
                    e1.printStackTrace();
                }

                tempStudent = new Student(tempData[0], tempData[1], tempData[2], date);
                studentRecord[i] = tempStudent;
            }
        }

        return studentRecord;
    }

}

驱动程序类:

public class Lab3 { 

    public void main(String[] args) throws ParseException, FileNotFoundException{

        Student[] allData = new Student[3];
        allData = (Student[]) StudentDAO.readTextData();

        System.out.println("");
        System.out.println("DEBUG *** Student Objects created, displaying all Students...\n");
        for(Student s : allData){
            Print.print(s);
        }
    }
}

修改 谢谢你指出这个错误,谢谢大家,但现在我得到了

  

线程“main”中的异常java.lang.NoSuchMethodError:main

这是因为StudentDAO没有主要的吗?

其他编辑

@mprabhat感谢指出一个非常愚蠢的错误,仍然不知道我怎么没看到&gt;&lt;

现在,当扫描程序尝试从文件中读取数据时,我遇到了问题。

1 - 表示无法找到数据文件,即使它位于我的src文件夹中。

2 - 扫描仪行上也有错误,我是否应该在文件上使用扫描仪?我应该去... DataInputStream?

3 个答案:

答案 0 :(得分:0)

您的方法readTextData不是静态的,但您通过使用类名StudentDAO

来访问静态方法
StudentDAO.readTextData();

而是创建一个对象StudentDAO,然后调用readTextData

Student[] allData = new Student[3];
StudentDAO studentDAO  = new StudentDAO();
allData = (Student[]) studentDAO.readTextData();

您的Lab3中的问题是您没有正确的主要方法签名。

public static void main(String[] args)是正确的签名,您的签名遗失static,因此您将获得java.lang.NoSuchMethodError: main

答案 1 :(得分:0)

在Lab3课程中,创建StudentDAO和实例,然后阅读如下文本:

StudentDAO dao = new StudentDAO();
allData = (Student[]) dao.readTextData();

答案 2 :(得分:0)

你基本上有两件事:

  1. readTextData()不是静态的,因此您无法以与您相同的方式访问它。您需要创建一个对象,然后调用该方法。

  2. 您正在创建一个包含3个元素的数组,然后丢弃并填充一些新数据。

  3. 所以基本上你需要替换它:

    Student[] allData = new Student[3];
    allData = (Student[]) StudentDAO.readTextData();
    

    用这个:

    StudentDAO sDao = new StudentDAO();
    Student[] students = (Student[])sDao.readTextData();
    

    为了完整起见,如果你这样做,你也应该摆脱错误,但我建议你坚持我刚刚列出的方法:

    在您的界面类中,将此public Object[] readTextData() throws FileNotFoundException;替换为:public static Object[] readTextData() throws FileNotFoundException;。这将使您的readTextData方法保持静态。替换DAO中的方法签名(使用public static Object[] readTextData() throws FileNotFoundException;)类应该删除您所面临的错误。