2016-05-11 70 views
1

我正在嘗試創建一個法語詞典以在語言工具拼寫檢查器上使用它。 代碼本身似乎創建它,但它不是我的情況,因爲我無法在我的文件夾中找到.dict文件。 希望你能幫助我 - 也許這只是錯誤地使用Java代碼。在語言工具上創建詞典

java -cp languagetool.jar org.languagetool.tools.SpellDictionaryBuilder fr_FR -i C:/Users/KP/Desktop/LanguageTool/french_dict.txt -info org/languagetool/resource/fr/french.info -o C:/Users/KP/Desktop/LanguageTool/output.dict 

    Running Morfologik FSACompile.main with these options: [--exit, false, -i, C:\Users\KP\AppData\Local\Temp\SpellDictionaryBuilder257816875475185246.txt, -o, C:\Users\KP\Desktop\LanguageTool\output.dict, -f, CFSA2, --overwrite] 
    Invalid argument: Unknown option: --overwrite 

    Usage: fsa_compile [options] 
    Options: 
      --accept-bom 
       Accept leading BOM bytes (UTF-8). 
       Default: false 
      --accept-cr 
       Accept CR bytes in input sequences (\r). 
       Default: false 
      -f, --format 
       Automaton serialization format. 
       Default: FSA5 
       Possible Values: [FSA5, CFSA2] 
      --ignore-empty 
       Ignore empty lines in the input. 
       Default: false 
      * -i, --input 
       The input sequences (one sequence per \n-delimited line). 
      * -o, --output 
       The output automaton file. 
    Done. The binary dictionary has been written to C:\Users\KP\Desktop\LanguageTool\output.dict 

回答