我有一个输入流,每隔几秒就会获得一个字节数组。我知道字节数组总是按顺序包含一个long,一个double和一个整数。是否可以使用输入流(例如DataInputStream)读取此值,或者您可以建议我什么?
答案 0 :(得分:2)
您可以查看提供方法getLong()
,getDouble()
和getInt()
的{{3}}。
假设你有一个任意InputStream
,总是20个字节(长8个字节,双字节8个字节,Int字节4个字节):
int BUFSIZE = 20;
byte[] tmp = new byte[BUFSIZE];
while (true) {
int r = in.read(tmp);
if (r == -1) break;
}
ByteBuffer buffer = ByteBuffer.wrap(tmp);
long l = buffer.getLong();
double d = buffer.getDouble();
int i = buffer.getInt();
答案 1 :(得分:2)
您应该查看使用以下方法包装ByteBuffer:
ByteBuffer buf=ByteBuffer.wrap(bytes)
long myLong=buf.readLong();
double myDbl=buf.readDouble();
int myInt=buf.readInt();
DataInputStream
会很好,但性能会更差:
DataInputStream dis=new DataInputStream(new ByteArrayInputStream(bytes));
long myLong=dis.readLong();
double myDbl=dis.readDouble();
int myInt=dis.readInt();
要从其中任何一个获取字符串,您可以重复使用getChar()
。
假设buf
是您的ByteBuffer或DataInputStream,请执行以下操作:
StringBuilder sb=new StringBuilder();
for(int i=0; i<numChars; i++){ //set numChars as needed
sb.append(buf.readChar());
}
String myString=sb.toString();
如果要读取直到缓冲区结束,请将循环更改为:
readLoop:while(true){
try{
sb.append(buf.readChar());
catch(BufferUnderflowException e){
break readLoop;
}
}