我是开发 Android 应用程序的新手。我做了一个摄像头模块,它可以通过 Wi-Fi 输出 JPEG 流。由于文件大小不固定,模块总通过socket输出一个缓冲区。像这样的结构:
request cmd ---------------> Android phone socketchannel Camera 20K buffer <--------------- response raw data
我设置了一个 ByteBuffer 来接收 JPEG 原始数据。我可以在 ByteBuffer 开始时看到 JPEG-star TAG(0xff 0xd8),它显示 {-1, 40} 和 JPEG-end TAG {-1, -39} 应该在 ByteBuffer 中。我在 x86 系统上用 C 语言编写了一个测试程序,原始数据缓冲区至少包含一帧。
我使用 String 方法-indexOf() 无法搜索 JPEG 开始/结束标签。因为String方法只支持ASCII 0x00~0x79,支持函数不支持0x80~0xFF。我也尝试了 Pattern/Matcher 类,但得到了相同的结果。
JPEG 原始数据如下:
/* JPEG start */
ff d8 ff e1 01 22 45 78 69 66 00 00 49 49 2a 00
/* JPEG end */
43 ac 90 b8 62 3f 0a dd ca e7 9e a3 63 ff d9
当我编写纯 C 语言时,有 memmem() 函数可以在块内存中搜索特定的内存模式。JAVA 是否有类似的方法在 ByteBuffer 中查找扩展 ascii ?
下面是我的代码使用 Pattern/Matcher 来查找扩展的 ASCII 模式,但仍然失败:
public static final byte[] jpegEnd = new byte[]{(byte) 0xff, (byte)0xd9};
public static final byte[] jpegStart = {(byte)0xff, (byte)0xd8};
public ByteBuffer bjpegStart = ByteBuffer.allocate(10);
public ByteBuffer bjpegEnd = ByteBuffer.allocate(10);
public String sJpegStart;
public String sJpegEnd;
public String tempStr ;
public ByteBuffer inPut_buf = ByteBuffer.allocate(20500);
private Pattern pattern;
private Matcher matcher;
private int location;
/* initial JPEG-end ASCII string */
bjpegStart.put(jpegStart, 0, 2);
try {
sJpegStart = new String(bjpegStart.array(), "ISO-8859-1");
} catch (UnsupportedEncodingException e) {
// TODO Auto-generated catch block
e.printStackTrace();
}
bjpegEnd.put(jpegEnd, 0, 2);
try {
sJpegEnd = new String(bjpegEnd.array(), "ISO-8859-1");
} catch (UnsupportedEncodingException e) {
// TODO Auto-generated catch block
e.printStackTrace();
}
ByteBuffer buf = ByteBuffer.allocate(10);
buf.put((byte)outPut_cmd);
buf.flip();
Arrays.fill(inPut_buf.array(), 0, 20499, (byte) 0);
SocketChannel socketChannel = SocketChannel.open();
socketChannel.connect(new InetSocketAddress("192.168.0.1", TCP_SERVER_PORT));
socketChannel.write(buf);
if(outPut_cmd==49){
inPut_buf.limit(20480);
socketChannel.read(inPut_buf);
try {
tempStr = new String(inPut_buf.array(), "ISO-8859-1");
} catch (UnsupportedEncodingException e) {
// TODO Auto-generated catch block
e.printStackTrace();
}
pattern = Pattern.compile(sJpegEnd);
matcher = pattern.matcher(tempStr);
while(matcher.find()){
location = matcher.start();
break;
}
}