当前位置: 首页>>代码示例>>Java>>正文


Java UtilXml.writeXmlDocument方法代码示例

本文整理汇总了Java中org.ofbiz.base.util.UtilXml.writeXmlDocument方法的典型用法代码示例。如果您正苦于以下问题:Java UtilXml.writeXmlDocument方法的具体用法?Java UtilXml.writeXmlDocument怎么用?Java UtilXml.writeXmlDocument使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在org.ofbiz.base.util.UtilXml的用法示例。


在下文中一共展示了UtilXml.writeXmlDocument方法的7个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Java代码示例。

示例1: writeXmlDocument

import org.ofbiz.base.util.UtilXml; //导入方法依赖的package包/类
public static boolean writeXmlDocument(String str, Node node, String encoding, boolean omitXmlDeclaration, boolean indent, int indentAmount) {
    try {
        File file = FileUtil.getFile(str);
        if (file != null) {
            FileOutputStream os = new FileOutputStream(file);
            UtilXml.writeXmlDocument(node, os, encoding, omitXmlDeclaration, indent, indentAmount);
            os.close();
            return true;
        } else {
            Debug.logError("Unable to create XML document " + str, module);
        }
    } catch (Exception e) {
        Debug.logError(e, "Error while writing XML document " + str, module);
    }
    return false;
}
 
开发者ID:ilscipio,项目名称:scipio-erp,代码行数:17,代码来源:UelFunctions.java

示例2: toString

import org.ofbiz.base.util.UtilXml; //导入方法依赖的package包/类
@Override
public String toString() {
    try {
        return UtilXml.writeXmlDocument(document);
    } catch (IOException e) {
        Debug.logError(e, module);
        throw new IllegalStateException("Unable to write document as String");
    }
}
 
开发者ID:ilscipio,项目名称:scipio-erp,代码行数:10,代码来源:PcChargeApi.java

示例3: serialize

import org.ofbiz.base.util.UtilXml; //导入方法依赖的package包/类
public static String serialize(Object object) throws SerializeException, FileNotFoundException, IOException {
    Document document = UtilXml.makeEmptyXmlDocument("ofbiz-ser");
    Element rootElement = document.getDocumentElement();

    rootElement.appendChild(serializeSingle(object, document));
    return UtilXml.writeXmlDocument(document);
}
 
开发者ID:ilscipio,项目名称:scipio-erp,代码行数:8,代码来源:XmlSerializer.java

示例4: toXmlString

import org.ofbiz.base.util.UtilXml; //导入方法依赖的package包/类
public static String toXmlString(Node node, String encoding, boolean omitXmlDeclaration, boolean indent, int indentAmount) {
    try {
        ByteArrayOutputStream os = new ByteArrayOutputStream();
        UtilXml.writeXmlDocument(node, os, encoding, omitXmlDeclaration, indent, indentAmount);
        os.close();
        return os.toString();
    } catch (Exception e) {
        Debug.logError(e, "Error while creating XML String ", module);
    }
    return null;
}
 
开发者ID:ilscipio,项目名称:scipio-erp,代码行数:12,代码来源:UelFunctions.java

示例5: writeResponse

import org.ofbiz.base.util.UtilXml; //导入方法依赖的package包/类
public void writeResponse(HttpServletResponse response, Writer writer) throws IOException {
    ByteArrayOutputStream os = new ByteArrayOutputStream();
    try {
        UtilXml.writeXmlDocument(os, this.responseDocument, "UTF-8", true, true);
    } catch (Exception e) {
        throw new IOException(e.getMessage());
    }
    response.setContentLength(os.size());
    writer.write(os.toString("UTF-8"));
}
 
开发者ID:ilscipio,项目名称:scipio-erp,代码行数:11,代码来源:ResponseHelper.java

示例6: getViewXml

import org.ofbiz.base.util.UtilXml; //导入方法依赖的package包/类
public String getViewXml(String entityName) throws IOException {
    Document doc = UtilXml.makeEmptyXmlDocument();
    Element viewElement = getViewElement(doc, entityName);
    return UtilXml.writeXmlDocument(viewElement);
}
 
开发者ID:ilscipio,项目名称:scipio-erp,代码行数:6,代码来源:DynamicViewEntity.java

示例7: serialize

import org.ofbiz.base.util.UtilXml; //导入方法依赖的package包/类
public static String serialize(Object object) throws SerializeException, FileNotFoundException, IOException {
    Document document = UtilXml.makeEmptyXmlDocument("ofbiz-ser");
    Element rootElement = document.getDocumentElement();
    rootElement.appendChild(XmlSerializer.serializeSingle(object, document));
    return UtilXml.writeXmlDocument(document);
}
 
开发者ID:ilscipio,项目名称:scipio-erp,代码行数:7,代码来源:SoapSerializer.java


注:本文中的org.ofbiz.base.util.UtilXml.writeXmlDocument方法示例由纯净天空整理自Github/MSDocs等开源代码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。