7

我的代码是 test.html:

<!DOCTYPE html>
<html>
<body>

<h1>My First Heading</h1>

<p>My first paragraph.</p>

</body>
</html>

转换为

<!DOCTYPE html><html><body><h1>My First Heading</h1><p>My first paragraph.</p></body></html>

我正在使用手动转换,请告诉我有任何在线转换器可以将多行 html 代码转换为单行 html

4

7 回答 7

6

试试这个 :

缩小 HTML(或 XHTML)以及标记中包含的任何 CSS 或 JS

http://www.willpeavy.com/minifier/

于 2013-08-22T06:18:10.327 回答
4

你听说过这个吗?

http://www.willpeavy.com/minifier/

或这个

http://www.textfixer.com/html/compress-html-compression.php

于 2013-08-22T06:10:16.893 回答
2

检查下面的好网站

缩小器

于 2013-08-22T06:11:01.273 回答
1

这是一个声称这样做的网站..
http://www.odditysoftware.com/page-webtools16.htm

于 2013-08-22T06:12:08.293 回答
1

尝试使用StringUtils.chomp

BufferedReader bufferedReader = new BufferedReader(new FileReader(FILE_NAME));
        String s = null;
        StringBuilder stringBuilder = new StringBuilder();
        while((s = bufferedReader.readLine()) != null)
        {
            stringBuilder.append(StringUtils.chomp(s));
        }

        System.out.println("stringBuilder : "+stringBuilder);
于 2013-08-22T06:15:58.557 回答
0

使用http://htmlcompressor.com/compressor/ 单击“显示选项”并检查“单行 html 输出”

于 2013-08-22T06:15:12.743 回答
0

您可以使用以下任何方法来执行此操作:

http://www.willpeavy.com/minifier/http://www.iwebtool.com/html_optimizer

于 2013-08-22T06:21:05.427 回答