首頁 > web前端 > css教學 > 主體

如何選擇 Java 中最好的 CSS 解析器?

Patricia Arquette
發布: 2024-11-02 14:09:30
原創
571 人瀏覽過

How to Choose the Best CSS Parser in Java?

Java 中的CSS 解析器選項

簡介

探索 CSS 解析器選項

一個值得注意的選項是

CSSParser。它的錯誤回饋功能很有價值,這裡有一個修改後的程式碼範例供您參考:

<code class="java">package com.dlogic;

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.*;

// Main class
public class CSSParserTest 
{

    public static void main(String[] args) {

        CSSParserTest 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
            InputStream stream = oParser.getClass().getResourceAsStream(cssfile);

            // Create log file
            out = new FileOutputStream("log.txt");
            if (out != null)
            {
                ps = new PrintStream(out);
                System.setErr(ps); // Redirect stderr to log file
            } else {

                return rtn; 

            }


            // Parse CSS file
            InputSource source = new InputSource(new InputStreamReader(stream));
            CSSOMParser parser = new CSSOMParser();
            CSSStyleSheet stylesheet = parser.parseStyleSheet(source, null, null);

            // Inspect CSS DOM
            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));   
                    }
                }
            }

            if (out != null) out.close();
            if (stream != null) stream.close();
            rtn = true;
        }
        catch (IOException ioe)
        {
            System.err.println ("IO Error: " + ioe);
        }
        catch (Exception e)
        {
            System.err.println ("Error: " + e);
        }
        finally
        {
            if (ps != null) ps.close(); 
        }

        return rtn;

    }
}</code>
登入後複製

測試CSS 解析器

要測試解析器,請放置一個CSS在來源目錄中建立名為「design.css」的檔案並執行CSSParserTest 的main 方法。輸出將記錄到“log.txt”並包含有關 CSS 規則和样式的詳細資訊。

以上是如何選擇 Java 中最好的 CSS 解析器?的詳細內容。更多資訊請關注PHP中文網其他相關文章!

來源:php.cn
本網站聲明
本文內容由網友自願投稿,版權歸原作者所有。本站不承擔相應的法律責任。如發現涉嫌抄襲或侵權的內容,請聯絡admin@php.cn
作者最新文章
熱門教學
更多>
最新下載
更多>
網站特效
網站源碼
網站素材
前端模板
關於我們 免責聲明 Sitemap
PHP中文網:公益線上PHP培訓,幫助PHP學習者快速成長!