在java中寻找CSS解析器

时间:2009-10-03 12:12:05

标签: java css parsing

我正在寻找java中的CSS解析器。特别是我的要求是,对于HTML文档中的给定节点/元素,能够从解析器中询问/获取该元素的css样式。

我知道有W3C SAC界面和基于此的一个或两个实现 - 但是turorials / examples似乎不存在。

非常感谢任何正确方向的帮助/点。

谢谢

8 个答案:

答案 0 :(得分:16)

我使用了CSSParser而且我喜欢它 - 它也提供了很好的错误反馈。

以下是我发现和修改的一些示例代码:

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


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
         {

                // cssfile accessed as a resource, so must be in the pkg (in src dir).
                InputStream stream = oParser.getClass().getResourceAsStream(cssfile);

                 // overwrites and existing file contents
                 out = new FileOutputStream("log.txt");

                 if (out != null)
                 {
                     //log file
                     ps = new PrintStream( out );
                     System.setErr(ps); //redirects stderr to the log file as well

                 } else {

                     return rtn; 

                }


                InputSource source = new InputSource(new InputStreamReader(stream));
                CSSOMParser parser = new CSSOMParser();
                // parse and create a stylesheet composition
                CSSStyleSheet stylesheet = parser.parseStyleSheet(source, null, null);

                //ANY ERRORS IN THE DOM WILL BE SENT TO STDERR HERE!!
                // now iterate through the 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));   
                     }



                  }// end of StyleRule instance test
                } // end of ruleList loop

               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;

    }

}

答案 1 :(得分:14)

用于在Java中读取和编写CSS2和CSS3文件的CSS库是来自https://github.com/phax/ph-css ph-css 它基于JavaCC语法,支持CSS2和CSS3,还可以解析HTML样式属性。

  • 它支持最常见的黑客“*”,“_”和“$”不符合规范
  • 它支持CSS数学 - calc()表达式
  • 它支持@page规则
  • 支持CSS3媒体查询
  • 它支持@viewport规则
  • 它支持@keyframes规则
  • 它支持@supports规则 - 相当新
  • 它支持@namespace规则
  • 您可以获取不同元素的源位置信息(开头和结尾的行+列号 - 无论是标记还是完整构造)

自2013年5月21日起,JDK 1.5版本也可用,这使得Android开发更加有趣

答案 2 :(得分:11)

我需要一个自己的项目的CSS解析器,但我发现“CSSParser”太繁琐且不灵活(可能只是我),所以我最终编写了自己的简单但功能性的CSS解析器

如果您愿意,请随意使用: - )

OSBCP CSS Parser

答案 3 :(得分:4)

cssparser.sourcefourge.net的补充,

眼镜蛇:

http://lobobrowser.org/cobra.jsp

答案 4 :(得分:4)

在此处查看SAC及其实现:http://www.w3.org/Style/CSS/SAC/

CSSParser有点过时了

答案 5 :(得分:1)

jStyleParser提供了这个功能。它解析所有引用的样式表并将它们映射到DOM树节点。

答案 6 :(得分:1)

如果您在使用CSSParser时遇到困难,因为似乎根本没有文档,并且您可能只想解析一个CSS字符串,比如样式参数中的值,这里是我的简单使用示例:

import org.junit.Test;
import org.w3c.css.sac.InputSource;
import org.w3c.dom.css.CSSRule;
import org.w3c.dom.css.CSSStyleDeclaration;
import org.w3c.dom.css.CSSValue;

import com.steadystate.css.parser.CSSOMParser;

public class ParseCssTest {

@Test
public void testParseStyleDeclaration() throws IOException {
    String cssSample = "margin-top: 0cm; margin-bottom: 0cm; background: #e6e6e6";
    CSSOMParser parser = new CSSOMParser();
    CSSStyleDeclaration o = parser.parseStyleDeclaration(new InputSource(new StringReader(cssSample)));
    assertEquals("margin-top: 0cm; margin-bottom: 0cm; background: rgb(230, 230, 230)", o.toString());
    assertEquals("0cm", o.getPropertyCSSValue("margin-bottom").toString());
    assertEquals("0cm", o.getPropertyCSSValue("margin-bottom").getCssText());
    assertEquals(null, o.getPropertyCSSValue("foo"));
}

@Test
public void testParseARule() throws IOException {
    String cssSample = "r1 { margin-top: 0cm; margin-bottom: 0cm; background: #e6e6e6 }";
    CSSOMParser parser = new CSSOMParser();
    CSSRule o = parser.parseRule(new InputSource(new StringReader(cssSample)));
    assertEquals("r1 { margin-top: 0cm; margin-bottom: 0cm; background: rgb(230, 230, 230) }", o.toString());
}

@Test
public void parseStyleDeclarationWithAdvancedTests() throws IOException {
    String cssSample = "margin-top: 0 cm; margin-bottom: 0cm; background: #e6e6e6";
    CSSOMParser parser = new CSSOMParser();
    CSSStyleDeclaration o = parser.parseStyleDeclaration(new InputSource(new StringReader(cssSample)));
    assertEquals("margin-top: 0 cm; margin-bottom: 0cm; background: rgb(230, 230, 230)", o.toString());

    assertEquals("0cm", o.getPropertyCSSValue("margin-bottom").toString());
    assertEquals("0cm", o.getPropertyCSSValue("margin-bottom").getCssText());
    assertEquals(CSSValue.CSS_VALUE_LIST, o.getPropertyCSSValue("margin-top").getCssValueType());

    assertEquals("0 cm", o.getPropertyCSSValue("margin-top").toString());
    assertEquals("0 cm", o.getPropertyCSSValue("margin-top").getCssText());
    assertEquals(CSSValue.CSS_VALUE_LIST, o.getPropertyCSSValue("margin-top").getCssValueType());
}
}

CSSParser的最大优势在于它目前在Maven中。因此,如果你寻找一些相当简单和直接可用的东西,CSSParser似乎是不错的选择。

注意:它会自动转换从十六进制格式到rgb()格式的颜色,但不提供单位大小的帮助,它将它们视为值列表!不太好。

答案 7 :(得分:1)

我刚刚推出了我自己的CSS Stream Parser for Java,可在github上找到。该解析器与众不同之处包括:

  • 它是一个流解析器,因此解析器处理程序将在解析每个项目后立即收到所有新内容的通知
  • 完全支持所有当前记录的At-Rules
  • 自定义类TokenSequenceToken简化了处理选择器等的过程。
  • 易于使用和理解
  • 对验证或更高级的应用程序有用
  • 可扩展:旨在处理对CSS定义的更改。