亚洲欧美第一页_禁久久精品乱码_粉嫩av一区二区三区免费野_久草精品视频

? 歡迎來到蟲蟲下載站! | ?? 資源下載 ?? 資源專輯 ?? 關于我們
? 蟲蟲下載站

?? bytesmessageimpl.java

?? 一個java方面的消息訂閱發送的源碼
?? JAVA
?? 第 1 頁 / 共 3 頁
字號:
        try {
            result = _in.readUnsignedShort();
        } catch (IOException exception) {
            revert(exception);
        }
        return result;
    }

    /**
     * Read a Unicode character value from the bytes message stream.
     *
     * @return the next two bytes from the bytes message stream as a Unicode
     * character
     * @throws JMSException if JMS fails to read message due to some internal
     * JMS error
     * @throws MessageEOFException if end of message stream
     * @throws MessageNotReadableException if message is in write-only mode
     */
    public final char readChar() throws JMSException {
        char result = 0;
        prepare();
        try {
            result = _in.readChar();
        } catch (IOException exception) {
            revert(exception);
        }
        return result;
    }

    /**
     * Read a signed 32-bit integer from the bytes message stream.
     *
     * @return the next four bytes from the bytes message stream, interpreted
     * as an <code>int</code>
     * @throws JMSException if JMS fails to read message due to some internal
     * JMS error
     * @throws MessageEOFException if end of message stream
     * @throws MessageNotReadableException if message is in write-only mode
     */
    public final int readInt() throws JMSException {
        int result = 0;
        prepare();
        try {
            result = _in.readInt();
        } catch (IOException exception) {
            revert(exception);
        }
        return result;
    }

    /**
     * Read a signed 64-bit integer from the bytes message stream.
     *
     * @return the next eight bytes from the bytes message stream, interpreted
     * as a <code>long</code>.
     * @throws JMSException if JMS fails to read message due to some internal
     * JMS error
     * @throws MessageEOFException if end of message stream
     * @throws MessageNotReadableException if message is in write-only mode
     */
    public final long readLong() throws JMSException {
        long result = 0;
        prepare();
        try {
            result = _in.readLong();
        } catch (IOException exception) {
            revert(exception);
        }
        return result;
    }

    /**
     * Read a <code>float</code> from the bytes message stream.
     *
     * @return the next four bytes from the bytes message stream, interpreted
     * as a <code>float</code>
     * @throws JMSException if JMS fails to read message due to some internal
     * JMS error
     * @throws MessageEOFException if end of message stream
     * @throws MessageNotReadableException if message is in write-only mode
     */
    public final float readFloat() throws JMSException {
        float result = 0;
        prepare();
        try {
            result = _in.readFloat();
        } catch (IOException exception) {
            revert(exception);
        }
        return result;
    }

    /**
     * Read a <code>double</code> from the bytes message stream.
     *
     * @return the next eight bytes from the bytes message stream,
     *			interpreted as a <code>double</code>
     * @throws JMSException if JMS fails to read message due to some internal
     * JMS error
     * @throws MessageEOFException if end of message stream
     * @throws MessageNotReadableException if message is in write-only mode
     */
    public final double readDouble() throws JMSException {
        double result = 0;
        prepare();
        try {
            result = _in.readDouble();
        } catch (IOException exception) {
            revert(exception);
        }
        return result;
    }

    /**
     * Read in a string that has been encoded using a modified UTF-8 format
     * from the bytes message stream.
     *
     * <p>For more information on the UTF-8 format, see "File System Safe
     * UCS Transformation Format (FSS_UFT)", X/Open Preliminary Specification,
     * X/Open Company Ltd., Document Number: P316. This information also
     * appears in ISO/IEC 10646, Annex P.
     *
     * @return a Unicode string from the bytes message stream
     * @throws JMSException if JMS fails to read message due to some internal
     * JMS error
     * @throws MessageEOFException if end of message stream
     * @throws MessageFormatException if string has an invalid format
     * @throws MessageNotReadableException if message is in write-only mode
     */
    public final String readUTF() throws JMSException {
        String result = null;
        prepare();
        try {
            result = _in.readUTF();
        } catch (IOException exception) {
            revert(exception);
        }
        return result;
    }

    /**
     * Read a byte array from the bytes message stream.
     *
     * <p>If the length of array <code>value</code> is less than
     * the bytes remaining to be read from the stream, the array should
     * be filled. A subsequent call reads the next increment, etc.
     *
     * <p>If the bytes remaining in the stream is less than the length of
     * array <code>value</code>, the bytes should be read into the array.
     * The return value of the total number of bytes read will be less than
     * the length of the array, indicating that there are no more bytes left
     * to be read from the stream. The next read of the stream returns -1.
     *
     * @param value the buffer into which the data is read
     * @return the total number of bytes read into the buffer, or -1 if
     * there is no more data because the end of the stream has been reached
     * @throws JMSException if JMS fails to read message due to some internal
     * JMS error
     * @throws MessageNotReadableException if message is in write-only mode
     */
    public final int readBytes(byte[] value) throws JMSException {
        return readBytes(value, value.length);
    }

    /**
     * Read a portion of the bytes message stream.
     *
     * <p>If the length of array <code>value</code> is less than
     * the bytes remaining to be read from the stream, the array should
     * be filled. A subsequent call reads the next increment, etc.
     *
     * <p>If the bytes remaining in the stream is less than the length of
     * array <code>value</code>, the bytes should be read into the array.
     * The return value of the total number of bytes read will be less than
     * the length of the array, indicating that there are no more bytes left
     * to be read from the stream. The next read of the stream returns -1.
     *
     * <p> If <code>length</code> is negative, or
     * <code>length</code> is greater than the length of the array
     * <code>value</code>, then an <code>IndexOutOfBoundsException</code> is
     * thrown. No bytes will be read from the stream for this exception case.
     *
     * @param value the buffer into which the data is read.
     * @param length the number of bytes to read. Must be less than or equal
     * to value.length.
     * @return the total number of bytes read into the buffer, or -1 if
     * there is no more data because the end of the stream has been reached.
     * @throws IndexOutOfBoundsException if <code>length</code> is invalid
     * @throws JMSException if JMS fails to read message due to some internal
     * JMS error
     * @throws MessageNotReadableException if message is in write-only mode
     */
    public final int readBytes(byte[] value, int length) throws JMSException {
        int read = -1;
        prepare();

        if (length < 0 || length > value.length) {
            throw new IndexOutOfBoundsException(
                "Length must be > 0 and less than array size");
        }
        try {
            _in.mark(length);
            int remain = _in.available();
            if (remain == 0) {
                read = -1;
            } else if (length <= remain) {
                read = length;
                _in.read(value, 0, length);
            } else {
                _in.readFully(value, 0, remain);
                read = remain;
            }
        } catch (EOFException ignore) {
        } catch (IOException exception) {
            revert(exception);
        }
        return read;
    }

    /**
     * Write a <code>boolean</code> to the bytes message stream as a 1-byte
     * value.
     * The value <code>true</code> is written out as the value
     * <code>(byte)1</code>; the value <code>false</code> is written out as
     * the value <code>(byte)0</code>.
     *
     * @param value the <code>boolean</code> value to be written
     * @throws JMSException if JMS fails to write message due to some internal
     * JMS error
     * @throws MessageNotWriteableException if message is in read-only mode
     */
    public final void writeBoolean(boolean value) throws JMSException {
        checkWrite();
        try {
            getOutputStream().writeBoolean(value);
        } catch (IOException exception) {
            raise(exception);
        }
    }

    /**
     * Write out a <code>byte</code> to the bytes message stream as a 1-byte
     * value.
     *
     * @param value the <code>byte</code> value to be written
     * @throws JMSException if JMS fails to write message due to some internal
     * JMS error
     * @throws MessageNotWriteableException if message is in read-only mode
     */
    public final void writeByte(byte value) throws JMSException {
        checkWrite();
        try {
            getOutputStream().writeByte(value);
        } catch (IOException exception) {
            raise(exception);
        }
    }

    /**
     * Write a <code>short</code> to the bytes message stream as two bytes,
     * high byte first.
     *
     * @param value the <code>short</code> to be written
     * @throws JMSException if JMS fails to write message due to some internal
     * JMS error
     * @throws MessageNotWriteableException if message is in read-only mode
     */
    public final void writeShort(short value) throws JMSException {
        checkWrite();
        try {
            getOutputStream().writeShort(value);
        } catch (IOException exception) {
            raise(exception);
        }
    }

    /**
     * Write a <code>char</code> to the bytes message stream as a 2-byte
     * value, high byte first.
     *
     * @param value the <code>char</code> value to be written
     * @throws MessageNotWriteableException if message is in read-only mode
     * @throws JMSException if JMS fails to write message due to some internal
     * JMS error
     */
    public final void writeChar(char value) throws JMSException {
        checkWrite();
        try {
            getOutputStream().writeChar(value);
        } catch (IOException exception) {
            raise(exception);
        }
    }

    /**
     * Write an <code>int</code> to the bytes message stream as four bytes,
     * high byte first.
     *
     * @param value the <code>int</code> to be written
     * @throws JMSException if JMS fails to write message due to some internal
     * JMS error
     * @throws MessageNotWriteableException if message is in read-only mode
     */
    public final void writeInt(int value) throws JMSException {
        checkWrite();
        try {
            getOutputStream().writeInt(value);
        } catch (IOException exception) {
            raise(exception);
        }
    }

    /**
     * Write a <code>long</code> to the bytes message stream as eight bytes,
     * high byte first
     *
     * @param value the <code>long</code> to be written
     * @throws JMSException if JMS fails to write message due to some internal
     * JMS error
     * @throws MessageNotWriteableException if message is in read-only mode
     */
    public final void writeLong(long value) throws JMSException {
        checkWrite();

?? 快捷鍵說明

復制代碼 Ctrl + C
搜索代碼 Ctrl + F
全屏模式 F11
切換主題 Ctrl + Shift + D
顯示快捷鍵 ?
增大字號 Ctrl + =
減小字號 Ctrl + -
亚洲欧美第一页_禁久久精品乱码_粉嫩av一区二区三区免费野_久草精品视频
韩国午夜理伦三级不卡影院| 国产激情视频一区二区三区欧美 | 日本免费在线视频不卡一不卡二| 久久久三级国产网站| 欧美日韩综合一区| 国产·精品毛片| 日韩电影一区二区三区四区| 国产精品久久夜| 日韩精品在线一区| 欧美网站一区二区| 99久久99久久精品免费观看| 精品一区二区三区视频| 亚洲一二三四久久| 国产精品卡一卡二| 国产亚洲福利社区一区| 欧美一区二区三区免费观看视频| 色呦呦国产精品| 成人久久久精品乱码一区二区三区 | 91小视频在线观看| 国产精品12区| 激情综合色播激情啊| 日韩av成人高清| 亚洲一区视频在线| 亚洲黄色小说网站| 亚洲欧美在线观看| 欧美激情一区二区| 日本一区二区三区四区| 亚洲精品一区二区在线观看| 91精品国产综合久久久久久漫画| 在线日韩av片| 日本高清不卡在线观看| av一区二区三区四区| 成人精品一区二区三区中文字幕| 国产原创一区二区| 国产一区欧美日韩| 国产精品资源站在线| 激情欧美一区二区| 狠狠久久亚洲欧美| 国产精品99久| 成人三级伦理片| 国产69精品一区二区亚洲孕妇| 国产精品一区二区果冻传媒| 精品午夜久久福利影院| 黄色小说综合网站| 国产精品夜夜嗨| 国产91精品久久久久久久网曝门| 国产成人鲁色资源国产91色综 | 97精品超碰一区二区三区| 粗大黑人巨茎大战欧美成人| 国产成人高清在线| 91在线视频观看| 在线日韩国产精品| 制服丝袜中文字幕一区| 日韩欧美一区电影| www一区二区| 国产精品久久久久久久久图文区| 亚洲欧美在线aaa| 一区二区三区欧美| 免费日本视频一区| 国产盗摄一区二区三区| 91无套直看片红桃| 欧美日韩的一区二区| 欧美大片在线观看一区二区| 久久久99精品久久| 亚洲欧美一区二区三区孕妇| 亚洲综合久久久久| 麻豆成人91精品二区三区| 高清日韩电视剧大全免费| 91蜜桃网址入口| 7799精品视频| 中文字幕的久久| 亚洲成人福利片| 国产大陆精品国产| 精品视频一区三区九区| 日韩精品一区二区三区蜜臀 | 中文字幕+乱码+中文字幕一区| 国产精品电影一区二区| 日韩av不卡在线观看| 国产99一区视频免费| 欧美午夜寂寞影院| 久久精品一区二区三区不卡牛牛| 亚洲日本在线天堂| 久久国产尿小便嘘嘘尿| av一区二区三区四区| 日韩亚洲国产中文字幕欧美| 国产精品久久久久影院色老大| 亚洲123区在线观看| 国产精品中文字幕日韩精品| 日本高清不卡一区| 国产午夜精品一区二区三区视频| 亚洲午夜三级在线| 成人一区二区在线观看| 欧美精品乱码久久久久久| 国产欧美日韩激情| 奇米综合一区二区三区精品视频| 99久久国产综合精品女不卡| 日韩美女主播在线视频一区二区三区| 国产精品久久久久国产精品日日| 日本怡春院一区二区| 色素色在线综合| 久久久久久久久久电影| 日韩精彩视频在线观看| 99久久久国产精品| 国产日韩av一区二区| 日本不卡不码高清免费观看| 91福利视频网站| 国产精品不卡一区| 狠狠色丁香九九婷婷综合五月| 欧美日韩和欧美的一区二区| 亚洲欧洲美洲综合色网| 国产毛片精品视频| 欧美成人高清电影在线| 亚洲成人精品影院| 欧美在线综合视频| 亚洲美女偷拍久久| www.亚洲色图.com| 国产午夜久久久久| 国产一区二区三区精品视频| 日韩亚洲欧美成人一区| 天堂久久一区二区三区| 欧美在线免费观看视频| 亚洲欧美国产77777| 99久久免费精品高清特色大片| 久久久久97国产精华液好用吗| 日本不卡1234视频| 日韩一区二区三区在线| 午夜国产精品一区| 欧美色老头old∨ideo| 一区二区成人在线| 在线欧美一区二区| 亚洲激情欧美激情| 欧美午夜视频网站| 亚洲国产精品视频| 欧美日韩一区二区三区视频| 一区二区三区精品视频在线| 97精品国产97久久久久久久久久久久| 国产精品久久看| 色悠悠久久综合| 亚洲自拍偷拍图区| 欧美日韩在线直播| 日韩高清一区在线| 日韩欧美一级特黄在线播放| 久久电影国产免费久久电影| 久久综合一区二区| 国产黄色91视频| 国产精品对白交换视频 | 国产高清亚洲一区| 日本一区二区三区高清不卡| 风流少妇一区二区| 国产精品福利av| 欧美伊人久久大香线蕉综合69 | 欧美视频一区二| 三级在线观看一区二区| 日韩欧美亚洲国产精品字幕久久久| 久久精品国产99国产精品| 26uuu亚洲综合色| 成人av午夜电影| 亚洲免费在线电影| 欧美日韩国产精品成人| 人妖欧美一区二区| 国产午夜精品福利| 色婷婷av一区| 日韩精品1区2区3区| 久久久三级国产网站| 91在线视频观看| 日日摸夜夜添夜夜添亚洲女人| 欧美成va人片在线观看| 9色porny自拍视频一区二区| 一区二区三区蜜桃网| 欧美不卡一区二区| 92精品国产成人观看免费| 亚洲bdsm女犯bdsm网站| 久久久www免费人成精品| 91小视频在线免费看| 日韩**一区毛片| 国产精品乱人伦一区二区| 欧美日韩一区二区电影| 国产精品中文字幕一区二区三区| 亚洲乱码日产精品bd| 欧美mv日韩mv国产网站| 成人99免费视频| 秋霞av亚洲一区二区三| 中文字幕一区二区三区不卡在线| 欧美影院一区二区三区| 国产伦精一区二区三区| 亚洲精品一二三| 亚洲精品一区二区三区在线观看| 99久久777色| 国产美女在线精品| 亚洲成人先锋电影| 中文字幕av一区二区三区免费看| 欧美老女人第四色| 97se亚洲国产综合自在线观| 日韩电影一区二区三区| 亚洲另类色综合网站| 亚洲国产精品成人综合| 日韩欧美色综合网站| 日本伦理一区二区| 国产99久久久久久免费看农村| 日本aⅴ亚洲精品中文乱码|