}
FileOutputStream os = null;
try {
LangProfile profile = GenProfile.loadFromWikipediaAbstract(lang, file);
profile.omitLessFreq();
File profile_path = new File(get("directory") + "/profiles/" + lang);
os = new FileOutputStream(profile_path);
JSON.encode(profile, os);
} catch (JSONException e) {