当前位置: 首页>>代码示例>>Java>>正文


Java DataOutputStream.writeByte方法代码示例

本文整理汇总了Java中org.hsqldb.lib.DataOutputStream.writeByte方法的典型用法代码示例。如果您正苦于以下问题:Java DataOutputStream.writeByte方法的具体用法?Java DataOutputStream.writeByte怎么用?Java DataOutputStream.writeByte使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在org.hsqldb.lib.DataOutputStream的用法示例。


在下文中一共展示了DataOutputStream.writeByte方法的7个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Java代码示例。

示例1: writeCreate

import org.hsqldb.lib.DataOutputStream; //导入方法依赖的package包/类
private void writeCreate(SessionInterface session,
                         DataOutputStream dataOut) throws IOException {

    dataOut.writeByte(mode);
    dataOut.writeInt(databaseID);
    dataOut.writeLong(sessionID);
    dataOut.writeLong(lobID);
    dataOut.writeInt(subType);
    dataOut.writeLong(blockOffset);
    dataOut.writeLong(blockLength);

    switch (subType) {

        case LobResultTypes.REQUEST_CREATE_BYTES :
            dataOut.write(stream, blockLength);
            break;

        case LobResultTypes.REQUEST_CREATE_CHARS :
            dataOut.write(reader, blockLength);
            break;
    }
}
 
开发者ID:tiweGH,项目名称:OpenDiabetes,代码行数:23,代码来源:ResultLob.java

示例2: xmit

import org.hsqldb.lib.DataOutputStream; //导入方法依赖的package包/类
/**
 * @return packet size (which does not count the type byte).
 */
synchronized int xmit(char packetType,
                      DataOutputStream destinationStream)
                      throws IOException {

    byte[] ba = byteArrayOutputStream.toByteArray();

    ba[0] = (byte) (ba.length >> 24);
    ba[1] = (byte) (ba.length >> 16);
    ba[2] = (byte) (ba.length >> 8);
    ba[3] = (byte) ba.length;

    reset();
    destinationStream.writeByte(packetType);
    destinationStream.write(ba);
    destinationStream.flush();

    return ba.length;
}
 
开发者ID:Julien35,项目名称:dev-courses,代码行数:22,代码来源:OdbcPacketOutputStream.java

示例3: write

import org.hsqldb.lib.DataOutputStream; //导入方法依赖的package包/类
public void write(SessionInterface session, DataOutputStream dataOut,
                  RowOutputInterface rowOut) throws IOException {

    writeBody(session, dataOut);
    dataOut.writeByte(ResultConstants.NONE);
    dataOut.flush();
}
 
开发者ID:tiweGH,项目名称:OpenDiabetes,代码行数:8,代码来源:ResultLob.java

示例4: write

import org.hsqldb.lib.DataOutputStream; //导入方法依赖的package包/类
public void write(DataOutputStream dataOut,
                  RowOutputInterface rowOut)
                  throws IOException {

    writeBody(dataOut);
    dataOut.writeByte(ResultConstants.NONE);
    dataOut.flush();
}
 
开发者ID:s-store,项目名称:sstore-soft,代码行数:9,代码来源:ResultLob.java

示例5: writeCreateByteSegments

import org.hsqldb.lib.DataOutputStream; //导入方法依赖的package包/类
private void writeCreateByteSegments(SessionInterface session,
                                     DataOutputStream dataOut)
                                     throws IOException {

    //
    int  bufferLength  = session.getStreamBlockSize();
    long currentOffset = blockOffset;

    dataOut.writeByte(mode);
    dataOut.writeInt(databaseID);
    dataOut.writeLong(sessionID);
    dataOut.writeLong(lobID);
    dataOut.writeInt(subType);

    HsqlByteArrayOutputStream byteArrayOS =
        new HsqlByteArrayOutputStream(bufferLength);

    byteArrayOS.reset();
    byteArrayOS.write(stream, bufferLength);
    dataOut.writeLong(currentOffset);
    dataOut.writeLong(byteArrayOS.size());
    dataOut.write(byteArrayOS.getBuffer(), 0, byteArrayOS.size());

    currentOffset += byteArrayOS.size();

    if (byteArrayOS.size() < bufferLength) {
        return;
    }

    //
    while (true) {
        byteArrayOS.reset();
        byteArrayOS.write(stream, bufferLength);

        if (byteArrayOS.size() == 0) {
            break;
        }

        //
        dataOut.writeByte(mode);
        dataOut.writeInt(databaseID);
        dataOut.writeLong(sessionID);
        dataOut.writeLong(lobID);
        dataOut.writeInt(LobResultTypes.REQUEST_SET_BYTES);
        dataOut.writeLong(currentOffset);
        dataOut.writeLong(byteArrayOS.size());
        dataOut.write(byteArrayOS.getBuffer(), 0, byteArrayOS.size());

        currentOffset += byteArrayOS.size();

        if (byteArrayOS.size() < bufferLength) {
            break;
        }
    }
}
 
开发者ID:tiweGH,项目名称:OpenDiabetes,代码行数:56,代码来源:ResultLob.java

示例6: writeCreateCharSegments

import org.hsqldb.lib.DataOutputStream; //导入方法依赖的package包/类
private void writeCreateCharSegments(SessionInterface session,
                                     DataOutputStream dataOut)
                                     throws IOException {

    //
    int  bufferLength  = session.getStreamBlockSize();
    long currentOffset = blockOffset;

    dataOut.writeByte(mode);
    dataOut.writeInt(databaseID);
    dataOut.writeLong(sessionID);
    dataOut.writeLong(lobID);
    dataOut.writeInt(subType);

    HsqlByteArrayOutputStream byteArrayOS =
        new HsqlByteArrayOutputStream(bufferLength);

    byteArrayOS.reset();
    byteArrayOS.write(reader, bufferLength / 2);

    //
    dataOut.writeLong(currentOffset);
    dataOut.writeLong(byteArrayOS.size() / 2);
    dataOut.write(byteArrayOS.getBuffer(), 0, byteArrayOS.size());

    currentOffset += byteArrayOS.size() / 2;

    if (byteArrayOS.size() < bufferLength) {
        return;
    }

    //
    while (true) {
        byteArrayOS.reset();
        byteArrayOS.write(reader, bufferLength / 2);

        if (byteArrayOS.size() == 0) {
            break;
        }

        //
        dataOut.writeByte(mode);
        dataOut.writeInt(databaseID);
        dataOut.writeLong(sessionID);
        dataOut.writeLong(lobID);
        dataOut.writeInt(LobResultTypes.REQUEST_SET_CHARS);
        dataOut.writeLong(currentOffset);
        dataOut.writeLong(byteArrayOS.size() / 2);
        dataOut.write(byteArrayOS.getBuffer(), 0, byteArrayOS.size());

        currentOffset += byteArrayOS.size() / 2;

        if (byteArrayOS.size() < bufferLength) {
            break;
        }
    }
}
 
开发者ID:tiweGH,项目名称:OpenDiabetes,代码行数:58,代码来源:ResultLob.java

示例7: writeBody

import org.hsqldb.lib.DataOutputStream; //导入方法依赖的package包/类
public void writeBody(DataOutputStream dataOut)
throws IOException {

    dataOut.writeByte(mode);
    dataOut.writeInt(databaseID);
    dataOut.writeLong(sessionID);
    dataOut.writeLong(lobID);
    dataOut.writeInt(subType);

    switch (subType) {

        case LobResultTypes.REQUEST_CREATE_BYTES :
            dataOut.writeLong(blockOffset);
            dataOut.writeLong(blockLength);
            dataOut.write(stream, blockLength);
            break;

        case LobResultTypes.REQUEST_CREATE_CHARS :
            dataOut.writeLong(blockOffset);
            dataOut.writeLong(blockLength);
            dataOut.write(reader, blockLength);
            break;

        case LobResultTypes.REQUEST_SET_BYTES :
        case LobResultTypes.REQUEST_GET_BYTE_PATTERN_POSITION :
            dataOut.writeLong(blockOffset);
            dataOut.writeLong(blockLength);
            dataOut.write(byteBlock);
            break;

        case LobResultTypes.REQUEST_SET_CHARS :
        case LobResultTypes.REQUEST_GET_CHAR_PATTERN_POSITION :
            dataOut.writeLong(blockOffset);
            dataOut.writeLong(blockLength);
            dataOut.writeChars(charBlock);
            break;

        case LobResultTypes.REQUEST_GET_LOB :

        //
        case LobResultTypes.REQUEST_GET_BYTES :
        case LobResultTypes.REQUEST_GET_CHARS :
            dataOut.writeLong(blockOffset);
            dataOut.writeLong(blockLength);
            break;

        case LobResultTypes.REQUEST_GET_LENGTH :
        case LobResultTypes.REQUEST_TRUNCATE :
            dataOut.writeLong(blockOffset);
            break;

        case LobResultTypes.RESPONSE_GET_BYTES :
            dataOut.writeLong(blockOffset);
            dataOut.writeLong(blockLength);
            dataOut.write(byteBlock);
            break;

        case LobResultTypes.RESPONSE_GET_CHARS :
            dataOut.writeLong(blockOffset);
            dataOut.writeLong(blockLength);
            dataOut.writeChars(charBlock);
            break;

        case LobResultTypes.RESPONSE_SET :
        case LobResultTypes.RESPONSE_CREATE_BYTES :
        case LobResultTypes.RESPONSE_CREATE_CHARS :
        case LobResultTypes.RESPONSE_TRUNCATE :
            dataOut.writeLong(blockLength);
            break;

        case LobResultTypes.RESPONSE_GET_BYTE_PATTERN_POSITION :
        case LobResultTypes.RESPONSE_GET_CHAR_PATTERN_POSITION :
            dataOut.writeLong(blockOffset);
            break;

        default :
            throw Error.runtimeError(ErrorCode.U_S0500, "ResultLob");
    }
}
 
开发者ID:s-store,项目名称:sstore-soft,代码行数:80,代码来源:ResultLob.java


注:本文中的org.hsqldb.lib.DataOutputStream.writeByte方法示例由纯净天空整理自Github/MSDocs等开源代码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。