?? numberencoder.java
字號(hào):
/**
*
* <p>Title: Smgp協(xié)議TLV結(jié)構(gòu)解析</p>
* <p>Description: 數(shù)值型編碼</p>
* <p>Copyright: Copyright (c) 2007</p>
* <p>Company: 福富軟件</p>
* @author chenxin
* @version 1.0 $Date 2007-07-03
*/
package ffcs.lbp.le.message.tlv;
import ffcs.lbp.le.util.LeIO;
/**
* Encode a <code>java.lang.Number</code> to a byte array. The number encoder
* is for encoding any optional parameters that are defined as integers.
* NumberEncoder operates on the {@link java.lang.Number}type and therefore
* accepts values of Byte, Short, Integer and Long. Encoding and decoding of
* values using this class will never fail due to a lenght mismatch..the value
* will always be either zero-padded or truncated down to the appropriate size.
*
* @author Oran Kelly
* @version $Id: NumberEncoder.java 255 2006-03-09 09:34:37Z orank $
*/
public class NumberEncoder implements Encoder {
/**
* Create a new NumberEncoder.
*/
public NumberEncoder() {
}
public void writeTo(Tag tag, Object value, byte[] b, int offset) {
long longVal = 0;
long mask = 0;
Number num;
try {
num = (Number) value;
} catch (ClassCastException x) {
throw new BadValueTypeException("Value must be of type "
+ "java.lang.Number");
}
if (value instanceof Byte) {
mask = 0xff;
} else if (value instanceof Short) {
mask = 0xffff;
} else if (value instanceof Integer) {
mask = 0xffffffff;
} else {
mask = 0xffffffffffffffffL;
}
longVal = num.longValue() & mask;
LeIO.longToBytes(longVal, tag.getLength(), b, offset);
}
public Object readFrom(Tag tag, byte[] b, int offset, int length) {
long val = LeIO.bytesToLong(b, offset, length);
if (length <= 4) {
return new Integer((int) val);
} else {
return new Long(val);
}
}
public int getValueLength(Tag tag, Object value) {
return tag.getLength();
}
}
?? 快捷鍵說明
復(fù)制代碼
Ctrl + C
搜索代碼
Ctrl + F
全屏模式
F11
切換主題
Ctrl + Shift + D
顯示快捷鍵
?
增大字號(hào)
Ctrl + =
減小字號(hào)
Ctrl + -