本文整理汇总了Java中org.jdom2.output.Format.setLineSeparator方法的典型用法代码示例。如果您正苦于以下问题:Java Format.setLineSeparator方法的具体用法?Java Format.setLineSeparator怎么用?Java Format.setLineSeparator使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类org.jdom2.output.Format
的用法示例。
在下文中一共展示了Format.setLineSeparator方法的8个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Java代码示例。
示例1: sloppyPrint
import org.jdom2.output.Format; //导入方法依赖的package包/类
/**
* Creates an outputter and writes an XML tree.
*
* The encoding argument here only sets an attribute in the
* XML declaration. It's up to the caller to ensure the writer
* is encoding bytes to match. If encoding is null, the default
* is "UTF-8".
*
* If XML character entity escaping is allowed, otherwise unmappable
* characters may be written without errors. If disabled, an
* UnmappableCharacterException will make their presence obvious and fatal.
*
* LineEndings will be CR-LF. Except for comments!?
*
* @param doc
* @param writer
* @param disableEscaping
*/
public static void sloppyPrint( Document doc, Writer writer, String encoding, boolean allowEscaping ) throws IOException {
Format format = Format.getPrettyFormat();
format.setTextMode( Format.TextMode.PRESERVE ); // Permit leading/trailing space.
format.setExpandEmptyElements( false );
format.setOmitDeclaration( false );
format.setIndent( "\t" );
format.setLineSeparator( LineSeparator.CRNL );
if ( encoding != null ) {
format.setEncoding( encoding );
}
if ( !allowEscaping ) {
format.setEscapeStrategy(new EscapeStrategy() {
@Override
public boolean shouldEscape( char ch ) {
return false;
}
});
}
XMLOutputter outputter = new XMLOutputter( format, new SloppyXMLOutputProcessor() );
outputter.output( doc, writer );
}
示例2: patch
import org.jdom2.output.Format; //导入方法依赖的package包/类
public static void patch(InputStream target, InputStream diff,
OutputStream result) throws IOException {
try {
Document targetDoc = XmlHelper.parse(target);
Document diffDoc = XmlHelper.parse(diff);
Element diffRoot = diffDoc.getRootElement();
for (Object o : diffRoot.getChildren()) {
patch(targetDoc, (Element) o);
}
XMLOutputter outputter = new XMLOutputter();
// Use the separator that is appropriate for the platform.
Format format = Format.getRawFormat();
format.setLineSeparator(System.getProperty("line.separator"));
outputter.setFormat(format);
outputter.output(targetDoc, result);
} catch (JDOMException e) {
throw new PatchException(ErrorCondition.INVALID_DIFF_FORMAT, e);
}
}
示例3: getRawContents
import org.jdom2.output.Format; //导入方法依赖的package包/类
public String getRawContents(final Document dom) throws IOException {
final Format format = Format.getRawFormat();
format.setLineSeparator(LineSeparator.UNIX);
final XMLOutputter outputter = new XMLOutputter(format, new StandaloneOutputProcessor());
final Writer writer = new StringWriter();
outputter.output(dom, writer);
return writer.toString();
}
示例4: convertElementToText
import org.jdom2.output.Format; //导入方法依赖的package包/类
public static String convertElementToText(final Element element) throws IOException {
final Format format = Format.getRawFormat();
format.setLineSeparator(LineSeparator.UNIX);
final XMLOutputter outputter = new XMLOutputter(format, new StandaloneOutputProcessor());
final Writer writer = new StringWriter();
outputter.output(element, writer);
return writer.toString();
}
示例5: convertDocumentToText
import org.jdom2.output.Format; //导入方法依赖的package包/类
public static String convertDocumentToText(final Document document) throws IOException {
final Format format = Format.getRawFormat();
format.setLineSeparator(LineSeparator.UNIX);
final XMLOutputter outputter = new XMLOutputter(format, new StandaloneOutputProcessor());
final Writer writer = new StringWriter();
outputter.output(document, writer);
return writer.toString();
}
示例6: sloppyPrint
import org.jdom2.output.Format; //导入方法依赖的package包/类
/**
* Creates an outputter and writes an XML tree.
*
* The encoding argument here only sets an attribute in the
* XML declaration. It's up to the caller to ensure the writer
* is encoding bytes to match. If encoding is null, the default
* is "UTF-8".
*
* LineEndings will be CR-LF. Except for comments!?
*/
public static void sloppyPrint( Document doc, Writer writer, String encoding ) throws IOException
{
Format format = Format.getPrettyFormat();
format.setExpandEmptyElements( false );
format.setOmitDeclaration( false );
format.setIndent( "\t" );
format.setLineSeparator( LineSeparator.CRNL );
if ( encoding != null ) format.setEncoding( encoding );
XMLOutputter outputter = new XMLOutputter( format, new SloppyXMLOutputProcessor() );
outputter.output( doc, writer );
}
示例7: csToNmasXML
import org.jdom2.output.Format; //导入方法依赖的package包/类
static String csToNmasXML( final ChallengeSet cs, final String guidValue )
{
final Element rootElement = new Element( NMAS_XML_ROOTNODE );
rootElement.setAttribute( NMAS_XML_ATTR_RANDOM_COUNT, String.valueOf( cs.getMinRandomRequired() ) );
if ( guidValue != null )
{
rootElement.setAttribute( "GUID", guidValue );
}
else
{
rootElement.setAttribute( "GUID", "0" );
}
for ( final Challenge challenge : cs.getChallenges() )
{
final Element loopElement = new Element( NMAS_XML_NODE_CHALLENGE );
if ( challenge.getChallengeText() != null )
{
loopElement.setText( challenge.getChallengeText() );
}
if ( challenge.isAdminDefined() )
{
loopElement.setAttribute( NMAS_XML_ATTR_DEFINE, "Admin" );
}
else
{
loopElement.setAttribute( NMAS_XML_ATTR_DEFINE, "User" );
}
if ( challenge.isRequired() )
{
loopElement.setAttribute( NMAS_XML_ATTR_TYPE, "Required" );
}
else
{
loopElement.setAttribute( NMAS_XML_ATTR_TYPE, "Random" );
}
loopElement.setAttribute( NMAS_XML_ATTR_MIN_LENGTH, String.valueOf( challenge.getMinLength() ) );
loopElement.setAttribute( NMAS_XML_ATTR_MAX_LENGTH, String.valueOf( challenge.getMaxLength() ) );
rootElement.addContent( loopElement );
}
final XMLOutputter outputter = new XMLOutputter();
final Format format = Format.getRawFormat();
format.setTextMode( Format.TextMode.PRESERVE );
format.setLineSeparator( "" );
outputter.setFormat( format );
return outputter.outputString( rootElement );
}
示例8: write
import org.jdom2.output.Format; //导入方法依赖的package包/类
public void write(final Document dom, final OutputStream stream) throws IOException {
final Format format = Format.getRawFormat();
format.setLineSeparator(LineSeparator.UNIX);
final XMLOutputter outputter = new XMLOutputter(format, new StandaloneOutputProcessor());
outputter.output(dom, stream);
}