while ((temp = reader.readLine()) != null) {
strs = temp.trim().split("\t");
if (strs.length != 2) {
throw new RuntimeException("error arg by init " + dicName + "\t" + strs.length);
}
Library.insertWord(forest, new Value(strs[1], strs[0]));
}
return forest;
} catch (UnsupportedEncodingException e) {
e.printStackTrace();
} catch (IOException e) {