java - 自动将样式表转换为内联样式

标签 java css html-parsing

不必担心链接样式或悬停样式。

我想自动转换这样的文件

<html>
<body>
<style>
body{background:#FFC}
p{background:red}
body, p{font-weight:bold}
</style>
<p>...</p>
</body>
</html>

到这样的文件

<html>
<body style="background:red;font-weight:bold">
<p style="background:#FFC;font-weight:bold">...</p>
</body>
</html>

如果有一个 HTML 解析器可以做到这一点,我会更感兴趣。

我想这样做的原因是我可以显示使用全局样式表的电子邮件,而不会让它们的样式表弄乱我网页的其余部分。我还想将生成的样式发送到基于 Web 的富文本编辑器以进行回复和原始消息。

最佳答案

这是一个关于 java 的解决方案,我使用 JSoup 库:http://jsoup.org/download

import java.io.IOException;
import java.util.StringTokenizer;

import org.jsoup.Jsoup;
import org.jsoup.nodes.Document;
import org.jsoup.nodes.Element;
import org.jsoup.select.Elements;

public class AutomaticCssInliner {
    /**
     * Hecho por Grekz, http://grekz.wordpress.com
     */
    public static void main(String[] args) throws IOException {
        final String style = "style";
        final String html = "<html>" + "<body> <style>"
                + "body{background:#FFC} \n p{background:red}"
                + "body, p{font-weight:bold} </style>"
                + "<p>...</p> </body> </html>";
        // Document doc = Jsoup.connect("http://mypage.com/inlineme.php").get();
        Document doc = Jsoup.parse(html);
        Elements els = doc.select(style);// to get all the style elements
        for (Element e : els) {
            String styleRules = e.getAllElements().get(0).data().replaceAll(
                    "\n", "").trim(), delims = "{}";
            StringTokenizer st = new StringTokenizer(styleRules, delims);
            while (st.countTokens() > 1) {
                String selector = st.nextToken(), properties = st.nextToken();
                Elements selectedElements = doc.select(selector);
                for (Element selElem : selectedElements) {
                    String oldProperties = selElem.attr(style);
                    selElem.attr(style,
                            oldProperties.length() > 0 ? concatenateProperties(
                                    oldProperties, properties) : properties);
                }
            }
            e.remove();
        }
        System.out.println(doc);// now we have the result html without the
        // styles tags, and the inline css in each
        // element
    }

    private static String concatenateProperties(String oldProp, String newProp) {
        oldProp = oldProp.trim();
        if (!newProp.endsWith(";"))
           newProp += ";";
        return newProp + oldProp; // The existing (old) properties should take precedence.
    }
}

关于java - 自动将样式表转换为内联样式,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/4521557/

相关文章:

java - JButton 被删除后会在 JPanel 中留下痕迹吗?

java - 哪个 JVM 打印出这样的线程转储?

java - 如何根据 JavaFX 中的条件设置 ListView 单元格的样式

css - Bootstrap 中的类 ="jumbotron"无法正常工作

html-parsing - 使用网络 worker 解析 HTML

c# - 将 HTML 表格解析为 CSV 的最佳方法

css - html页面中的自定义标签(如xml)?

java - try catch 异常总是返回 null

java - 访问服务组件中的静态变量的好方法

CSS - 出现在 UL 外部的下拉菜单