IKVM を使用して C# で opennlp ツールを使用しています。次のコードを書きました。
string modelpath = @"D:\models\en-sent.bin";
java.io.FileInputStream modelInpStream = new java.io.FileInputStream(modelpath);
SentenceModel model = new SentenceModel(modelInpStream);
SentenceDetectorME sentenceDetector = new SentenceDetectorME(model);
しかし、次の行で TypeInitializationException が発生しました。
SentenceModel model = new SentenceModel(modelInpStream);
例外メッセージ:
TypeInitializationException was unhandled
'java.nio.charset.StandardCharsets' の型初期化子が例外をスローしました。
IKVM Charsets dll を追加しましたが、それでも機能しません。