class ExeCreateDic { public static void main(String args[]) { NGramDic dic = new NGramDic(); dic.create(new FileRead(args[0])); Index ind = dic.getIndex(); ind.saveFile(args[1]); System.out.println("EndSave"); Index test = new Index(); test.loadFile(args[1]); System.out.println( test.getChild(0).getChild(0).getName() +" "+ test.getChild(0).getChild(0).getName() ); test.searchFile(args[1],args[2]); } }