Я объединил несколько файлов JPEG в один файл .bin.
.....
.........
while(true){
if (q.numOfFiles() > 0) {
source = q.getNextFile();
in = new DataInputStream(new BufferedInputStream(new FileInputStream(source)));
byte[] buf = new byte[1024];
int len;
while ((len = in.read(buf)) > 0) {
out.write(buf, 0, len);
}
String s = "filename=="+source.getName()+"==filename";
out.write(s.getBytes());
out.flush();
System.out.println("merged--"+source.getName());
}
}
........
........
, как вы можете видеть, я добавляю "filename ==" + source.getName () + "== filename" послеконец каждого файла.Теперь я хочу отделить все эти JPEG с их фактическими именами файлов.Как я могу прочитать разделители, которые я вставил в объединенные файлы?