大约有 18 项符合查询结果, 库内数据总量为 30,778 项。 (搜索耗时: 0.0038 秒)
...e(); byte1.writeFloat32(20.0);//写入一个四个字节的浮点数 byte1.writeInt16(16);//写入一个两个字节的整数 byte1.writeUTFString("hell world");//写入一个字符串; byte.writeArrayBuffer(byte1.buffer,6);//把byte1的数据从第六个字节开始读入byte中。省略其中的...
来源: Laya2.0_文档 发布时间: 20210714
...e(); byte1.writeFloat32(20.0);//写入一个四个字节的浮点数 byte1.writeInt16(16);//写入一个两个字节的整数 byte1.writeUTFString("hell world");//写入一个字符串; byte.writeArrayBuffer(byte1.buffer,6);//把byte1的数据从第六个字节开始读入byte中。省略其中的...
来源: Laya2.0_文档 发布时间: 20210715
...e(); byte1.writeFloat32(20.0);//写入一个四个字节的浮点数 byte1.writeInt16(16);//写入一个两个字节的整数 byte1.writeUTFString("hell world");//写入一个字符串; byte.writeArrayBuffer(byte1.buffer,6);//把byte1的数据从第六个字节开始读入byte中。省略其中的...
来源: Laya2.0_文档 发布时间: 20210715
...dUint8 readUint8Array writeArrayBuffer writeByte writeFloat32 writeFloat64 writeInt16 writeInt32 writeUTFBytes writeUTFString writeUTFString32 writeUint16 writeUint32 writeUint8 getSystemEndian Constructors constructor new Byte(data?: any): Byte Defined in laya/utils/Byte.ts:50 创建一个 Byte 类...
来源: Laya3.0_api 发布时间: 20231115
...个字节 this.byte.writeByte(1); //写入一个int16的数据 this.byte.writeInt16(20); //写入一个32位的浮点数据 this.byte.writeFloat32(20.5); // 写入一个字符串; this.byte.writeUTFString("hello"); //这里声明一个临时Byte类型 var by:Laya.Byte = new Laya.Byte(); //设置en...
来源: Laya3.0_文档 发布时间: 20241014
...位置处写入一个 IEEE 754 双精度(64 位)浮点数。 Byte writeInt16(value:int):void 在字节流的当前字节偏移量位置处写入指定的 Int16 值。 Byte writeInt32(value:int):void 在字节流的当前字节偏移量位置处写入指定的 Int32 值。 Byte writeUint...
来源: Laya2.0_api 发布时间: 20190513
...gt;>> var byts:ByteArray = new ByteArray(); byts.writeByte(10); byts.writeInt(20); byts.writeInt(200); byts.writeInt(150); var file:File = File.desktopDirectory.resolvePath("byarr.byte"); var stream:FileStream = new FileStream(); stream.open(file, FileMode.WRITE); stream.writeBytes(byts); stre...
来源: Laya_社区 发布时间: 20170308
...e).finish(); //封装数据为约定的格式 length,id,buff socket.output.writeInt32(length); socket.output.writeInt32(id); socket.output.writeArrayBuffer(buffer); //发送给服务器 socket.flush(); 2.问题来了,我在接受socket消息的时候,使用proto decode的时候报错 //--------...
来源: Laya_社区 发布时间: 20171113
...位置处写入一个 IEEE 754 双精度(64 位)浮点数。 Byte writeInt16(value:int):void 在字节流的当前字节偏移量位置处写入指定的 Int16 值。 Byte writeInt32(value:int):void 在字节流的当前字节偏移量位置处写入指定的 Int32 值。 Byte writeUint...
来源: laya_api 发布时间: 20170929
....toArrayBuffer()的同时,还要发送另外的,比如: this.byte.writeInt32(123); this.byte.writeInt32(1234); this.byte.writeArrayBuffer(buffer); this.socket.send(this.byte.buffer); 那么现在的数据要怎么反序化呢 2017-09-21 添加评论 免费帖 --> 分享 微博 QZONE 微信 ...
来源: Laya_社区 发布时间: 20170921