Main.java Source code

Java tutorial

Introduction

Here is the source code for Main.java

Source

//package com.java2s;
/*  Copyright (c) 2010 Xiaoyun Zhu
 * 
 *  Permission is hereby granted, free of charge, to any person obtaining a copy  
 *  of this software and associated documentation files (the "Software"), to deal  
 *  in the Software without restriction, including without limitation the rights  
 *  to use, copy, modify, merge, publish, distribute, sublicense, and/or sell  
 *  copies of the Software, and to permit persons to whom the Software is  
 *  furnished to do so, subject to the following conditions:
 *  
 *  The above copyright notice and this permission notice shall be included in  
 *  all copies or substantial portions of the Software.
 *  
 *  THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR  
 *  IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,  
 *  FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE  
 *  AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER  
 *  LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,  
 *  OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN  
 *  THE SOFTWARE.  
 */

import java.nio.ByteBuffer;

public class Main {
    public final static boolean containsP(final ByteBuffer bb1, final ByteBuffer bb2) {
        return contains(bb1.array(), bb1.position(), bb1.limit(), bb2.array(), bb2.position(), bb2.limit());
    }

    public final static boolean contains(final ByteBuffer bb1, final ByteBuffer bb2) {
        return contains(bb1.array(), 0, bb1.limit(), bb2.array(), 0, bb2.limit());
    }

    /**
     * 
     * @param text
     * @param offset1
     * @param end1
     *            absolute
     * @param s
     * @return
     */
    public final static boolean contains(final byte[] array1, final int offset1, final int end1,
            final byte[] array2, final int offset2, final int end2) {
        final int len1 = end1 - offset1;
        final int len2 = end2 - offset2;
        if (len2 == 0) {
            return true;
        } else if (len1 >= len2) {
            byte b;
            int idx = offset2;
            for (int i = offset1; i < end1; i++) {
                b = array1[i];
                if (b == array2[idx]) {
                    if (++idx >= end2) {
                        return true;
                    }
                } else {
                    idx = offset2;
                }
            }
        }
        return false;
    }

    public final static boolean contains(final byte[] array1, final int offset1, final int end2,
            final byte[] array2) {
        return contains(array1, offset1, end2, array2, 0, array2.length);
    }
}