- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我在解码从 GPS 设备发送到我的 java UDP 监听器程序的字节时遇到问题。我可以提取一些信息,但对于其他信息,我无法理解如何执行此操作。设备手册中的数据格式如下:
Name | Type | Length
length: | short | 2
cmd: | short | 2
enabled: | unsigned char | 1
alarm: | unsigned char | 1
speed: | char | 1
direction: | short | 2
longitude: | double | 4
latitude: | double | 4
datetime: | long | 4
userid: | char | 11
iostate: | char | 1
oilstate: | char | 1
在我的程序中,我可以解码长度、命令、警报、速度、方向和设备。我陷入了纬度、经度和日期时间的困境,需要一些帮助。我得到的值与正确的值完全相去甚远。使用 struct.unpack 函数在 python 上运行没有任何问题。
函数中代码如下:
private void SetupUDP() throws IOException {
String message;
// Setup UDP Stuff and listen on all interfaces
DatagramSocket serverSocket = new DatagramSocket(9876, InetAddress.getByName("0.0.0.0"));
byte[] receiveData = new byte[1024];
while(true) {
// Start receiving UDP packets from devices
DatagramPacket receivePacket = new DatagramPacket(receiveData, receiveData.length);
serverSocket.receive(receivePacket);
ByteBuffer data = ByteBuffer.wrap(receivePacket.getData());
data.order(ByteOrder.LITTLE_ENDIAN);
if (receivePacket.getLength() == 15) {
short len = data.getShort(0);
short cmd = data.getShort(2);
String device = "";
for (int x=4; x < 14; x++) {
byte b = data.get(x);
device += (char) b;
}
System.out.println(len + " " + cmd + " -- " + device);
}
if (receivePacket.getLength() == 34) {
short len = data.getShort(0);
short cmd = data.getShort(2);
byte benabled = data.get(4);
int enabled = (int) benabled;
byte balarm = data.get(5);
// Alarm (OK)
int alarm = Math.abs((int) balarm);
// Speed (OK)
byte bspeed = data.get(6);
int speed = (int) bspeed;
// Direction (OK)
short direction = data.getShort(7);
// Coordinates
double longitude = data.getDouble(9);
double latitude = data.getDouble(13);
// Device ID (OK)
String device = "";
for (int x=21; x < 31; x++) {
byte bdevice = data.get(x);
device += (char) bdevice;
}
// Datetime (testing)
int ddatetime = data.get(17);
Date datetime = new Date(ddatetime * 1000);
//System.out.println("-->" + datetime + ", " + longitude);
System.out.println(len + " " + cmd + " " + enabled + " " + alarm + " " + speed + " " + direction + " " + longitude + " " + latitude + " " + datetime + " " + device);
}
}
}
最佳答案
您正在读取的纬度和经度各为 8 个字节,您的规范显示为 4。java中的double
和ByteBuffer
中的getDouble
都是8个字节,你需要getFloat
。
当您读得太远时,这也会损坏数据。
关于Java 使用 ByteBuffer 解码来自 GPS 设备的字节,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/54271953/
我有一个空的 byteBuffer 分配为 data = ByteBuffer.allocateDirect(layerSize(0, faces - 1, 0, levels - 1) * laye
虽然存在 ByteBuffer.put(ByteBuffer) 方法,但 ByteBuffer.get(ByteBuffer) 似乎丢失了?我应该如何从较大的 ByteBuffer 读取较小的 Byt
我在 Dart Web 应用程序中加载二进制文件,其中包含压缩音频数据作为二进制数据的一部分。当数据通过 http 请求加载时,它作为一个 ByteBuffer 出现,我理解它是 Dart 对 JS
假设我有一个列表/数组列表或字节缓冲区数组(List 或 ByteBuffer[]) 是否可以由此直接从上述数组中获取字节,而无需遍历所有项或计算它们的总大小?我正在寻找这样的东西: ByteBuff
我有一个或多个 ByteBuffer,其中包含一条消息的部分内容。现在我想阅读此消息,但我不想将 N ByteBuffer 复制到一个中。我的解析器需要一个包含完整消息的 ByteBuffer,但我的
如果已知它是其他缓冲区? 我知道这可以通过非直接数组支持的 ByteBuffer 使用 arrayOffset() 方法来完成,如下所示: int getRelativeBufferOffset(By
如何在 Dart 中将 ByteBuffer 的字节快速复制到另一个更大的 ByteBuffer(以非零偏移量)? 有一些缓慢的方法可以做到这一点。一种是将每个都转换为 Uint8List 并一次复制
嘿嘿, ByteBuffers 以及 netty 的 ByteBuff 使用索引来存储它们当前“所在”的位置。在我的应用程序开始时,我加载 ByteBuffers/ByteBuffs 中的多个文件以便
我知道 flip() 将当前缓冲区位置设置为 0,并将限制设置为上一个缓冲区位置,而 rewind() 只是将当前缓冲区位置设置为 0。 在下面的代码中,我使用 rewind() 或 flip() 得
我有一个数组 ByteBuffer s(实际上代表整数)。我想在数组中分离唯一和非唯一的 ByteBuffer(即整数)。因此我使用这种类型的 HashSet: HashSet columnsSet
我的代码中有一个 java.nio.ByteBuffer: ByteBuffer bb = ByteBuffer.allocateDirect(1024); ... 我希望能够将其替换为 ByteBu
我需要将代码从 Java 移植到 C#。在Java代码中,使用了方法“ByteBuffer.flip()”和“ByteBuffer.slice”,不知道怎么翻译。 我读过这个问题 ( An equiv
以下 Java 代码可以编译,但在运行时会出错: # javac ByteBufTest.java # java ByteBufTest Exception in thread "main" java
我有一个方法如下,它已经正常运行了很长时间: private String loadFromFile(){ RandomAccessFile inFile = null; FileCh
用户在测试中遇到了此崩溃。我的第一个猜测是这与内存有关,但除此之外我没有什么可做的。更深入地研究代码,我认为这可能是主线程问题,但看起来监听器在后台线程上被删除,所以我怀疑这就是原因。 我认为在应用程
以下代码(此为简化版)以前在jdk1.6中运行良好,现在在jdk 1.7下断言失败。 ByteBuffer buffer = ...; buffer.mark(); char c = (char) b
我有一个 10MB 的二进制文件。我需要以不同大小的 block (例如 300、273 字节)读取它。为了阅读,我使用 FileChannel 和 ByteBuffer。现在,对于每次读取迭代,我都
我想要做的是获取一个十进制整数,将其转换为十六进制,然后分隔字节。 据我了解,ByteBuffer 是实现此目的的最佳方法。整数不会超过65535,因此十六进制数保证为2个字节。例如,我有一个整数 4
我正在写一些使用 ByteBuffer 的东西s。在 docs of the API它说 There is no way to free a buffer explicitly (without JV
我正在尝试读取一个短数组,转换其元素并将它们放入字节数组中。我使用 ByteBuffer 并收回此异常: 线程“main”中的异常 java.lang.IndexOutOfBoundsExceptio
我是一名优秀的程序员,十分优秀!