我需要json格式的输出,为此我必须转换json中的jcas对象。
我尝试使用uima指南中提供的方法,但未成功。

谁能建议我一个解决方案。

最佳答案

使用JsonCasSerializer,您可以执行此操作

final String note = "Serum Cholesterol 154 150 250 mgs/dl\n-\nSerum Triglycerides 67 90 200 mgs /dl\n-\nSerum HDL: Cholesterol 38 35 55 mgs /dl\n-\nSerum LDL: Cholesterol 49 85 150 mgs/d1\n-\nSerum VLDL: Cholesterol 13 10 40 mgs/dl\n-\nTotal Cholesterol / HDL Ratio: 3.90\";
final JCas jcas = JCasFactory.createJCas();
jcas.setDocumentText(note);

final AnalysisEngineDescription aed = getFastPipeline();
SimplePipeline.runPipeline(jcas, aed);
CAS cas = jcas.getCas();

JsonCasSerializer jcs = new JsonCasSerializer();
jcs.setPrettyPrint(true); // do some configuration

StringWriter sw = new StringWriter();
jcs.serialize(cas, sw); // serialize into sw

System.out.println(sw.toString());


这给了我JSON格式的文档输出。

07-27 13:42