수색…


Beautify 또는 Pretty-Print XML

PrettyPrinter 유틸리티는 XML 문서를 '꽤 인쇄'합니다. 다음 코드 스 니펫은 형식화되지 않은 xml을 인쇄합니다.

import scala.xml.{PrettyPrinter, XML}
val xml = XML.loadString("<a>Alana<b><c>Beth</c><d>Catie</d></b></a>")
val formatted = new PrettyPrinter(150, 4).format(xml)
print(formatted)

이렇게하면 페이지 너비 150 및 들여 쓰기 상수 4 공백 문자를 사용하여 내용을 출력합니다.

<a>
    Alana
    <b>
        <c>Beth</c>
        <d>Catie</d>
    </b>
</a>

XML.loadFile("nameoffile.xml") 을 사용하여 문자열 대신 파일에서 xml을로드 할 수 있습니다.



Modified text is an extract of the original Stack Overflow Documentation
아래 라이선스 CC BY-SA 3.0
와 제휴하지 않음 Stack Overflow