我一直在寻找在Java程序中使用Apache UIMA的示例。是否存在有关如何在Java程序中使用示例注释器的示例?

最佳答案

如果要直接在Java代码中使用UIMA,则可能需要看看uimafit,因为它可以简化Java内部对UIMA的使用。这是一个使用示例注释器(source)的快速示例。

public class RoomNumberAnnotatorPipeline {

        public static void main(String[] args) throws UIMAException {
                String text = "The meeting was moved from Yorktown 01-144 to Hawthorne 1S-W33.";
                TypeSystemDescription tsd = createTypeSystemDescription(
                                "org.uimafit.examples.tutorial.type.RoomNumber");
                JCas jCas = createJCas(tsd);
                jCas.setDocumentText(text);

                AnalysisEngine analysisEngine = createPrimitive(RoomNumberAnnotator.class, tsd);
                analysisEngine.process(jCas);

                for (RoomNumber roomNumber : select(jCas, RoomNumber.class)) {
                        System.out.println(roomNumber.getCoveredText() + "\tbuilding = "
                                        + roomNumber.getBuilding());
                }
        }
}

09-25 22:17