ホームページ > 記事 > ウェブフロントエンド > Java で CSS ファイルを解析し、セレクターに基づいて特定のルールを抽出し、そのスタイルを取得するにはどうすればよいですか?
Java での CSS 解析
Java 用の CSS パーサーを探す場合は、W3C SAC インターフェイスとその実装を検討してください。ただし、これらのチュートリアルと例を見つけるのは難しい場合があります。
推奨事項とコード サンプル
優れたエラー フィードバックで知られる CSSParser を使用することを強くお勧めします。以下は、CSSParser に基づいて変更されたサンプル コードです。
<code class="java">import com.steadystate.css.parser.CSSOMParser; import org.w3c.css.sac.InputSource; import org.w3c.dom.css.CSSStyleSheet; import org.w3c.dom.css.CSSRuleList; import org.w3c.dom.css.CSSRule; import org.w3c.dom.css.CSSStyleRule; import org.w3c.dom.css.CSSStyleDeclaration; import java.io.*; public class CSSParserTest { protected static CSSParserTest oParser; public static void main(String[] args) { oParser = new CSSParserTest(); if (oParser.Parse("design.css")) { System.out.println("Parsing completed OK"); } else { System.out.println("Unable to parse CSS"); } } public boolean Parse(String cssfile) { FileOutputStream out = null; PrintStream ps = null; boolean rtn = false; try { // Access CSS file as a resource (must be in package) InputStream stream = oParser.getClass().getResourceAsStream(cssfile); // Overwrite existing file contents out = new FileOutputStream("log.txt"); if (out != null) { // Log file ps = new PrintStream(out); System.setErr(ps); } else { return rtn; } InputSource source = new InputSource(new InputStreamReader(stream)); CSSOMParser parser = new CSSOMParser(); CSSStyleSheet stylesheet = parser.parseStyleSheet(source, null, null); // Iterate through DOM and inspect CSSRuleList ruleList = stylesheet.getCssRules(); ps.println("Number of rules: " + ruleList.getLength()); for (int i = 0; i < ruleList.getLength(); i++) { CSSRule rule = ruleList.item(i); if (rule instanceof CSSStyleRule) { CSSStyleRule styleRule = (CSSStyleRule) rule; ps.println("Selector:" + i + ": " + styleRule.getSelectorText()); CSSStyleDeclaration styleDeclaration = styleRule.getStyle(); for (int j = 0; j < styleDeclaration.getLength(); j++) { String property = styleDeclaration.item(j); ps.println("Property: " + property); ps.println("Value: " + styleDeclaration.getPropertyCSSValue(property).getCssText()); ps.println("Priority: " + styleDeclaration.getPropertyPriority(property)); } } } } catch (IOException ioe) { System.err.println("IO Error: " + ioe); } catch (Exception e) { System.err.println("Error: " + e); } finally { if (ps != null) ps.close(); if (out != null) out.close(); if (stream != null) stream.close(); } return rtn; } }</code>
このコードにより、CSS ファイルを解析し、セレクターに基づいて特定のルールにアクセスし、CSSStyleDeclaration オブジェクトからスタイルを取得できます。
以上がJava で CSS ファイルを解析し、セレクターに基づいて特定のルールを抽出し、そのスタイルを取得するにはどうすればよいですか?の詳細内容です。詳細については、PHP 中国語 Web サイトの他の関連記事を参照してください。