jsoup如何禁止格式化代码?
高洛峰
高洛峰 2016-11-07 14:11:28
0
1
622

使用jsoup分析html,需要获取某个元素的html代码,并且要求代码不要格式化(缩进和换行)。使用jsoup获取到此元素之后,tostring方法返回的结果直接对代码进行了格式化。

请问如何禁止jsoup对代码进行格式化?


高洛峰
高洛峰

拥有18年软件开发和IT教学经验。曾任多家上市公司技术总监、架构师、项目经理、高级软件工程师等职务。 网络人气名人讲师,...

모든 응답(1)
三叔

Document.outputSettings().prettyPrint(false);

/**
* Get if pretty printing is enabled. Default is true. If disabled, the HTML output methods will not re-format
* the output, and the output will generally look like the input.
* @return if pretty printing is enabled.
*/
public boolean prettyPrint() {
    return prettyPrint;
}

/**
 * Enable or disable pretty printing.
 * @param pretty new pretty print setting
 * @return this, for chaining
 */
public OutputSettings prettyPrint(boolean pretty) {
    prettyPrint = pretty;
    return this;
}


최신 다운로드
더>
웹 효과
웹사이트 소스 코드
웹사이트 자료
프론트엔드 템플릿