0
<?xml version='1.0' encoding='UTF-8'?>
 <!DOCTYPE dmodule 
 [<!NOTATION JPEG SYSTEM 'Joint Photographic Experts Group'>
  <!ENTITY abcd SYSTEM  'sunset.jpg' NDATA JPEG>
 ]>

  ....
  <graphic id = "abcd"/>

参考上面的示例代码,我需要在我的 html 上获取日落图像,为此我需要获取在实体声明中定义的文件路径日落.jpg。

我将如何在 Java 中做到这一点?我试过

 document.getDoctype().getEntities().item(i).getNodeName(),  

但它给了我abcd,但我需要文件路径'sunset.jpg'。

我也试过,

builder.setEntityResolver(new EntityResolver() {

            @Override
            public InputSource resolveEntity(String publicId, String systemId)
                    throws SAXException, IOException {
                // TODO Auto-generated method stub

                System.out.println("Public and System IDs"+publicId+"  "+systemId);
                return new InputSource(new StringReader(referDM));
            }
        });

但我认为我的返回类型有一些问题,因为我希望将图像文件作为字节数组读取,?返回类型应该是什么?

4

1 回答 1

1

干得好:

Entity entity = (Entity) document.getDoctype().getEntities().item(i);
String path = entity.getSystemId();
于 2012-08-29T14:48:24.983 回答