从外部文本中读取数据。文件到构造函数中的参数?

时间:2011-03-22 10:47:30

标签: java file text external

    public Board(String nam) {


    AllLocations.add(new Utility("Go", 1, 00.00) {
    });
    AllLocations.add(new Street("Forum", 2, 60.00, 2, ColourGroup.PURPLE) {
    });
    AllLocat ions.add(new Utility("Community Chest", 3, 00.00) {
    });
    AllLocations.add(new Street("Batchwood Hall", 4, 60.00, 4, ColourGroup.PURPLE) {

这是我的董事会类的构造函数的示例,我想要做的是有一个外部txt文件,我可以通过石灰读取每行上面添加的每行。

例如,txt文件将是

go,1,00.00
forum,2,60.00, 2 ColourGroup.PURPLE
community chest, 3, 00.00
Batchwood Hall, 4, 60.00, ColourGroup.PURPLE

感谢。

0 个答案:

没有答案