java 对象 转换成字节数组发送给服务器,根据服务器返回的字节数组自动组装成java对象。

public static class DrawingSettings implements ByteObject {
		public double r; // red;
		public double g; // green;
		public double b; // blue;
		public double a; // 透明度
		public int line_no; // 线号
		public int line_width; // 线宽

		@Override
		public byte[] toBytes() {
			ByteBuffer buffer = ByteBuffer.allocate(4 * 8 + 2 * 4);

			buffer.order(ByteOrder.LITTLE_ENDIAN);

			buffer.putDouble(r);
			buffer.putDouble(g);
			buffer.putDouble(b);
			buffer.putDouble(a);

			buffer.putInt(line_no);
			buffer.putInt(line_width);

			return buffer.array();
		}

		@Override
		public Object toObject(byte[] bytes) {

			ByteBuffer buffer = ByteBuffer.wrap(bytes);
			buffer.order(ByteOrder.LITTLE_ENDIAN);

			this.r = buffer.getDouble(0);
			this.g = buffer.getDouble(8);
			this.b = buffer.getDouble(16);
			this.a = buffer.getDouble(24);

			this.line_no = buffer.getInt(32);
			this.line_width = buffer.getInt(36);
			return this;
		}

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值