本文整理汇总了Java中org.apache.mina.common.ByteBuffer.putInt方法的典型用法代码示例。如果您正苦于以下问题:Java ByteBuffer.putInt方法的具体用法?Java ByteBuffer.putInt怎么用?Java ByteBuffer.putInt使用的例子?那么, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类org.apache.mina.common.ByteBuffer
的用法示例。
在下文中一共展示了ByteBuffer.putInt方法的3个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Java代码示例。
示例1: writeUnsignedInteger
import org.apache.mina.common.ByteBuffer; //导入方法依赖的package包/类
public static void writeUnsignedInteger(ByteBuffer buffer, long l)
{
// TODO: Is this comparison safe? Do I need to cast RHS to long?
if (l < Integer.MAX_VALUE)
{
buffer.putInt((int) l);
}
else
{
int iv = (int) l;
// FIXME: This *may* go faster if we build this into a local 4-byte array and then
// put the array in a single call.
buffer.put((byte) (0xFF & (iv >> 24)));
buffer.put((byte) (0xFF & (iv >> 16)));
buffer.put((byte) (0xFF & (iv >> 8)));
buffer.put((byte) (0xFF & iv));
}
}
示例2: writeInt
import org.apache.mina.common.ByteBuffer; //导入方法依赖的package包/类
protected void writeInt(ByteBuffer buffer, int i)
{
buffer.putInt(i);
}
示例3: writeInteger
import org.apache.mina.common.ByteBuffer; //导入方法依赖的package包/类
public static void writeInteger(ByteBuffer buffer, Integer aInteger)
{
buffer.putInt(aInteger);
}