I have a messaging class in my java program that only uses String values and never any binary data.
I want to send a rpm file, so basically binary data through this messaging class to a receiver.
I know this can be done by converting the binary data to a String on the messaging end and then back to a binary file on the receiving end.
However my question is, will any data be lost between converting my binary file to a String then back to binary data to save as a binary file, or will the data be retained through all conversions?