Java XML Attribute Create writeXmlAttribute(XMLStreamWriter out, String name, Date value)

Here you can find the source of writeXmlAttribute(XMLStreamWriter out, String name, Date value)

Description

DOCUMENTME.

License

Apache License

Parameter

Parameter Description
out DOCUMENTME
name DOCUMENTME
value DOCUMENTME

Exception

Parameter Description
XMLStreamExceptionDOCUMENTME

Declaration

public static void writeXmlAttribute(XMLStreamWriter out, String name, Date value) throws XMLStreamException 

Method Source Code

//package com.java2s;
/**//  w w w.ja  v a  2 s. c  om
 * Copyright 2005 Cordys R&D B.V. 
 * 
 * This file is part of the Cordys File Connector. 
 *
 * Licensed under the Apache License, Version 2.0 (the "License");
 * you may not use this file except in compliance with the License.
 * You may obtain a copy of the License at
 * 
 * http://www.apache.org/licenses/LICENSE-2.0
 * 
 * Unless required by applicable law or agreed to in writing, software
 * distributed under the License is distributed on an "AS IS" BASIS,
 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
 * See the License for the specific language governing permissions and
 * limitations under the License.
 */

import java.text.SimpleDateFormat;
import java.util.Date;
import javax.xml.stream.XMLStreamException;
import javax.xml.stream.XMLStreamWriter;

public class Main {
    /**
     * DOCUMENTME.
     */
    private static final SimpleDateFormat dateFormat = new SimpleDateFormat("yyyy-MM-dd'T'HH:mm:ss.SSS");

    /**
     * DOCUMENTME.
     *
     * @param   out    DOCUMENTME
     * @param   name   DOCUMENTME
     * @param   value  DOCUMENTME
     *
     * @throws  XMLStreamException  DOCUMENTME
     */
    public static void writeXmlAttribute(XMLStreamWriter out, String name, Date value) throws XMLStreamException {
        String str = null;

        if (value != null) {
            SimpleDateFormat format = (SimpleDateFormat) dateFormat.clone();

            str = format.format(value);
        } else {
            str = "";
        }

        out.writeAttribute(name, str);
    }
}

Related

  1. writeAttributeEvent(XMLEvent event, XMLStreamWriter writer)
  2. writeAttributes(Node node, Writer out)
  3. writeBoolAttr(Element element, String attributeName, boolean value)
  4. writeOutAttributesForNode(String[][] attributes, Node node)
  5. writeSvgAttributes(XMLStreamWriter w, Supplier cssClass, Supplier fill, Supplier stroke)