0

Cobra/Lobo ツールキットを使用して、DOM ノード (この例では <img> ノード) の CSS プロパティにアクセスする方法を見つけようとしています。私が現時点で持っているものは次のとおりです。

    UserAgentContext uacontext = new SimpleUserAgentContext();
    DocumentBuilderImpl builder = new DocumentBuilderImpl(uacontext);

    URL url = new URL(TEST_URI);
    InputStream in = url.openConnection().getInputStream();

    Reader reader = new InputStreamReader(in, "ISO-8859-1");
    InputSourceImpl inputSource = new InputSourceImpl(reader, TEST_URI);
    HTMLDocumentImpl d = (HTMLDocumentImpl) builder.parse(inputSource);
    HTMLCollection images = d.getImages();

    for (int i = 0; i < images.getLength(); i++) {

        HTMLElementImpl n = (HTMLElementImpl) images.item(i);
        AbstractCSS2Properties curr = n.getCurrentStyle();

        System.out.println("Image " + i + ": " + curr.getPropertyValue("background-color"));
    }

これは、継承または計算されたスタイルではなく、直接設定されたスタイルのみを提供するようです。これらもどうやって入手できますか?

ありがとう

4

1 に答える 1

0

Class HTMLElementImplgetComputedStyleのメソッドを使用する必要があると思います。

于 2009-12-01T15:34:52.983 に答える