List of usage examples for opennlp.tools.ngram NGramModel serialize
public void serialize(OutputStream out) throws IOException
From source file:opennlp.tools.ngram.NGramModelTest.java
@Ignore @Test/* w w w.ja v a 2 s. c om*/ public void testSerialize() throws Exception { NGramModel ngramModel = new NGramModel(); StringList tokens = new StringList("the", "brown", "fox", "jumped"); ngramModel.add(tokens, 1, 3); tokens = new StringList("the", "brown", "Fox", "jumped"); ngramModel.add(tokens, 1, 3); ByteArrayOutputStream out = new ByteArrayOutputStream(); ngramModel.serialize(out); Assert.assertNotNull(out); InputStream nGramModelStream = getClass().getResourceAsStream("/opennlp/tools/ngram/ngram-model.xml"); String modelString = IOUtils.toString(nGramModelStream); // remove AL header int start = modelString.indexOf("<!--"); int end = modelString.indexOf("-->"); String asfHeaderString = modelString.substring(start, end + 3); modelString = modelString.replace(asfHeaderString, ""); String outputString = out.toString(Charset.forName("UTF-8").name()); Assert.assertEquals( modelString.replaceAll("\n", "").replaceAll("\r", "").replaceAll("\t", "").replaceAll(" ", ""), outputString.replaceAll("\n", "").replaceAll("\r", "").replaceAll("\t", "").replaceAll(" ", "")); }