0

我正在尝试通过我的 Java 代码缩小 html 页面。我正在使用https://code.google.com/archive/p/htmlcompressor/进行压缩。

这是我的缩小方法:

public static String minifyHtml(String html) {
    HtmlCompressor htmlCompressor = new HtmlCompressor();
    htmlCompressor.setRemoveSurroundingSpaces(HtmlCompressor.ALL_TAGS);
    htmlCompressor.setPreserveLineBreaks(false);
    htmlCompressor.setCompressCss(true);

    return htmlCompressor.compress(document.toString());
}

然而,这并没有缩小我在 html 中的内联 css。例如对于以下标签:

<div class="content" style="font-family: Helvetica,sans-serif,Lucida Sans Unicode; font-size: 12pt; font-weight: normal; font-style: normal; text-decoration: none; color: rgb(0,0,0); background-color: transparent; margin-top: 0.0pt; margin-bottom: 0.0pt; text-indent: 0.0in; margin-left: 0.0in; margin-right: 0.0in; text-align: left; border-style: none; border-width: 0.0pt; border-color: rgb(0,0,0); padding: 0.0pt; white-space: pre-wrap;">

这可以使用 HtmlCompressor 缩小吗?如果没有,那么还有其他图书馆可以做到吗?

4

1 回答 1

1

字符串对象上的简单 Java 替换

String html_new = html.replace(': ' , ':').replace('; ' , ';');

return html_new;
于 2016-06-03T21:47:12.533 回答