abstractxmlencoder.java

来自「Java有关XML编程需要用到axis 的源代码 把里面bin下的包导入相应」· Java 代码 · 共 129 行

JAVA
129
字号
/* * Copyright 2001-2004 The Apache Software Foundation. *  * 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. */package org.apache.axis.components.encoding;import org.apache.axis.utils.Messages;/** * * Abstract class for XML String encoders. * * The new encoding mechanism fixes the following bugs/issues: *   http://nagoya.apache.org/bugzilla/show_bug.cgi?id=15133 *   http://nagoya.apache.org/bugzilla/show_bug.cgi?id=15494 *   http://nagoya.apache.org/bugzilla/show_bug.cgi?id=19327 * * @author <a href="mailto:jens@void.fm">Jens Schumann</a> * @author <a href="mailto:dims@yahoo.com">Davanum Srinivas</a> * */public abstract class AbstractXMLEncoder implements XMLEncoder {    protected static final String AMP = "&amp;";    protected static final String QUOTE = "&quot;";    protected static final String LESS = "&lt;";    protected static final String GREATER = "&gt;";    protected static final String LF = "\n";    protected static final String CR = "\r";    protected static final String TAB = "\t";    /**     * gets the encoding supported by this encoder     * @return string     */    public abstract String getEncoding();    /**     * Encode a string     * @param xmlString string to be encoded     * @return encoded string     */    public String encode(String xmlString) {        if(xmlString == null) {            return "";        }        char[] characters = xmlString.toCharArray();        StringBuffer out = null;        char character;        for (int i = 0; i < characters.length; i++) {            character = characters[i];            switch (character) {                // we don't care about single quotes since axis will                // use double quotes anyway                case '&':                    if (out == null) {                        out = getInitialByteArray(xmlString, i);                    }                    out.append(AMP);                    break;                case '"':                    if (out == null) {                        out = getInitialByteArray(xmlString, i);                    }                    out.append(QUOTE);                    break;                case '<':                    if (out == null) {                        out = getInitialByteArray(xmlString, i);                    }                    out.append(LESS);                    break;                case '>':                    if (out == null) {                        out = getInitialByteArray(xmlString, i);                    }                    out.append(GREATER);                    break;                case '\n':                    if (out == null) {                        out = getInitialByteArray(xmlString, i);                    }                    out.append(LF);                    break;                case '\r':                    if (out == null) {                        out = getInitialByteArray(xmlString, i);                    }                    out.append(CR);                    break;                case '\t':                    if (out == null) {                        out = getInitialByteArray(xmlString, i);                    }                    out.append(TAB);                    break;                default:                    if (character < 0x20) {                        throw new IllegalArgumentException(Messages.getMessage("invalidXmlCharacter00", Integer.toHexString(character), xmlString.substring(0, i)));                    } else {                        if (out != null) {                            out.append(character);                        }                    }                    break;            }        }        if (out == null) {            return xmlString;        }        return out.toString();    }    protected StringBuffer getInitialByteArray(String aXmlString, int pos) {        return new StringBuffer(aXmlString.substring(0, pos));    }}

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?