Java에서 최고의 CSS 파서를 선택하는 방법은 무엇입니까?

Patricia Arquette
풀어 주다: 2024-11-02 14:09:30
원래의
571명이 탐색했습니다.

How to Choose the Best CSS Parser in Java?

Java의 CSS 파서 옵션

소개

자주 Java에서 CSS 파서를 찾는 개발자 HTML 요소에서 스타일을 추출하는 문제에 직면합니다. W3C SAC 인터페이스는 기초를 제공하지만 포괄적인 문서를 찾는 것이 어려울 수 있습니다. 다음은 잠재적인 솔루션에 대한 탐색과 안내할 자세한 코드입니다.

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의 기본 메서드를 실행합니다. 출력은 "log.txt"에 기록되며 CSS 규칙 및 스타일에 대한 세부정보가 포함됩니다.

위 내용은 Java에서 최고의 CSS 파서를 선택하는 방법은 무엇입니까?의 상세 내용입니다. 자세한 내용은 PHP 중국어 웹사이트의 기타 관련 기사를 참조하세요!

원천:php.cn
본 웹사이트의 성명
본 글의 내용은 네티즌들의 자발적인 기여로 작성되었으며, 저작권은 원저작자에게 있습니다. 본 사이트는 이에 상응하는 법적 책임을 지지 않습니다. 표절이나 침해가 의심되는 콘텐츠를 발견한 경우 admin@php.cn으로 문의하세요.
저자별 최신 기사
인기 튜토리얼
더>
최신 다운로드
더>
웹 효과
웹사이트 소스 코드
웹사이트 자료
프론트엔드 템플릿
회사 소개 부인 성명 Sitemap
PHP 중국어 웹사이트:공공복지 온라인 PHP 교육,PHP 학습자의 빠른 성장을 도와주세요!