Main.java Source code

Java tutorial

Introduction

Here is the source code for Main.java

Source

//package com.java2s;
/*************************************************************************************
 * Copyright (c) 2006, 2008 The Sakai Foundation
 *
 * Licensed under the Educational Community 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.osedu.org/licenses/ECL-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.
    
 *************************************************************************************/

public class Main {
    /**
     * devuelve el texto enmarcado en una etiqueta. Se supone que la etiqueta exite y tiene valor. Este método funciona correctamente en el caso de que la etiqueta no tenga
     * multiplicidad. En el caso de que tuviera multiplicidad devolvería únicamente el prime contenido que se encuentre.
     * @param etiqueta etiqueta de la que queremos extraer su texto
     * @param documento: documento o subdocumento donde esta definida la etiqueta de la cual queremos extraer su texto
     * @return String Contenido de la etiqueta. En el caso de que la etiqueta no existiera devuelve <code>null</code>
     */
    public static String dameTextoDeLaEtiquetaSinComprobaciones(String etiqueta, String documento) {
        StringBuilder sb = new StringBuilder("<");
        sb.append(etiqueta).append(">");
        int posEtiquetaApertura = documento.indexOf(sb.toString());
        sb = new StringBuilder("</");
        sb.append(etiqueta).append(">");
        int posEtiquetaCierre = documento.indexOf(sb.toString());
        return documento.substring(posEtiquetaApertura + etiqueta.length() + 2, posEtiquetaCierre);

    }
}