So I been using this method to send data between applications for a long time. I turn everything into a string with delimiters, after that it’s just to use .getBytes and send it on it’s way. When the receiver gets it, I just simply convert the byte array back into a string, and split it, then I just simply convert it back into what it was; Int, long, boolean, and so on. But I like to know, is there a more common/better way of doing it?