Package com.dotcms.repackage.org.dts.spell.dictionary

Examples of com.dotcms.repackage.org.dts.spell.dictionary.SpellDictionary


    private SpellChecker loadSpellChecker(final String lang) throws SpellCheckException {
        String pathToDictionaries = getServletContext().getRealPath(JMYSPELL_DICTIONARIES_WEBAPP_PATH);
        File dictionariesDir = new File(pathToDictionaries);
        File dictionaryFile = new File(dictionariesDir, lang + ".zip");

        SpellDictionary dict = null;
        try {
            dict = new com.dotcms.repackage.org.dts.spell.dictionary.openoffice.OpenOfficeSpellDictionary(new ZipFile(dictionaryFile));
        } catch (IOException e) {
            throw new SpellCheckException("Failed to load dictionary for language" + lang, e);
        }
View Full Code Here

TOP

Related Classes of com.dotcms.repackage.org.dts.spell.dictionary.SpellDictionary

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.