diff options
author | Anton Tananaev <anton.tananaev@gmail.com> | 2015-10-26 13:29:37 +1300 |
---|---|---|
committer | Anton Tananaev <anton.tananaev@gmail.com> | 2015-10-26 13:29:37 +1300 |
commit | 09b4183fd7ba546209d422d53ea07e273bec26f3 (patch) | |
tree | 529c916e244d634870b0d2f01c51efce0e032889 /src/org/traccar/protocol/Jt600ProtocolDecoder.java | |
parent | 3e56ea6a99e7da5d61c5956876c2d977268e4756 (diff) | |
download | trackermap-server-09b4183fd7ba546209d422d53ea07e273bec26f3.tar.gz trackermap-server-09b4183fd7ba546209d422d53ea07e273bec26f3.tar.bz2 trackermap-server-09b4183fd7ba546209d422d53ea07e273bec26f3.zip |
Use hexDump instead of readHexString
Diffstat (limited to 'src/org/traccar/protocol/Jt600ProtocolDecoder.java')
-rw-r--r-- | src/org/traccar/protocol/Jt600ProtocolDecoder.java | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/org/traccar/protocol/Jt600ProtocolDecoder.java b/src/org/traccar/protocol/Jt600ProtocolDecoder.java index 184c96c97..ae74a1e83 100644 --- a/src/org/traccar/protocol/Jt600ProtocolDecoder.java +++ b/src/org/traccar/protocol/Jt600ProtocolDecoder.java @@ -22,6 +22,7 @@ import java.util.TimeZone; import java.util.regex.Matcher; import java.util.regex.Pattern; import org.jboss.netty.buffer.ChannelBuffer; +import org.jboss.netty.buffer.ChannelBuffers; import org.jboss.netty.channel.Channel; import org.traccar.BaseProtocolDecoder; import org.traccar.helper.ChannelBufferTools; @@ -48,7 +49,7 @@ public class Jt600ProtocolDecoder extends BaseProtocolDecoder { buf.readByte(); // header // Get device by identifier - String id = String.valueOf(Long.parseLong(ChannelBufferTools.readHexString(buf, 10))); + String id = String.valueOf(Long.parseLong(ChannelBuffers.hexDump(buf.readBytes(5)))); if (!identify(id, channel)) { return null; } |