SimpleGraph PowerPoint模块无法正常工作

时间:2018-03-13 11:03:35

标签: java gremlin tinkerpop simplegraph

我尝试过这个简单的单元测试,但没有达到我的预期:

@Test
  public void testReadPowerpoint() throws Exception {
    PowerPointSystem pps=new PowerPointSystem();
    pps.connect();
    SimpleNode slideShowNode =
 pps.moveTo("https://www.its.leeds.ac.uk/fileadmin/documents/alumni/Michele_Dix_Leeds_University_-_FINAL.PPTX");
    List<SimpleNode> slides = slideShowNode.out("slides")
        .collect(Collectors.toCollection(ArrayList::new));
    debug=true;
    if (debug)
      slides.forEach(slide -> slide.printNameValues(System.out));
    assertEquals(44, slides.size());
  }

不起作用 - 我得到0张幻灯片而不是44张。这是一个错误还是存在变通方法?

1 个答案:

答案 0 :(得分:3)

我的名字是Wolfgang Fahl我是SimpleGraph OpenSource Project的提交者之一。

我认为这是一个错误/缺失的功能。基本问题是在基于文件/输入流的模块的情况下moveTo应该接受的参数。可以使用Apache POI模块从任何输入输入流读取Powerpoint文件。 SimpleGraph需要一种一致的方式来处理不同的输入情况,我认为这是一个有效的讨论,应该在SimpleGraph dicussion组中完成。

要解决当前问题,我修改了代码,以确保单元测试运行并将单元测试添加到TestPowerPoint

当前解决方法

以下是Commit to fix your issue

的一部分  
/**
   * create a SlideShow
   * 
   * @param simpleGraph
   * @param nodeQuery
   * @throws Exception
   */
  public SlideShowNode(SimpleGraph simpleGraph, String pathOrUrl,
      String... keys) {
    super(simpleGraph, "slideshow", keys);
    InputStream is = null;
    try {
      try {
        URL url = new URL(pathOrUrl);
        is = url.openStream();
      } catch (MalformedURLException e1) {
        this.pathOrUl = pathOrUrl;
        pptFile = new File(pathOrUl);
        if (pptFile.canRead())
          is = new FileInputStream(pathOrUl);
      }
      if (is != null)
        slideshow = new XMLSlideShow(is);
      else
        slideshow = new XMLSlideShow();
    } catch (IOException e) {
      throw new RuntimeException(e);
    }
    super.setVertexFromMap();
  }