I try to filter a byte[]
, I want to remove line breaks from the stream
byte[] data = "y\neahbabydoit\nsothisistheway\ntodoit".getBytes();
Object[] tmp = IntStream.range(0, data.length).mapToObj(idx -> Integer.valueOf(data[idx]).byteValue()).filter(i -> i != 10).toArray();
System.out.println("src:"+Arrays.toString(data));
System.out.println("dst:"+Arrays.toString(tmp));
//works not!!
byte[] dest = (Byte[]) tmp; //help me here
The result (as expected) works (so far) but I'm not able to convert the result (Object[]
) in an easy way back (to byte[]
)...
src:[121, 10, 101, 97, 104, 98, ...
dst:[121, 101, 97, 104, 98, 97, ...
I know there are ways to solve this problem (see How to convert int[] to byte[]) but I want to do it in an easy (stream-like) way...
any news from java 8 or later?