I am writing a mobile phone application in Java. The goal is to send and receive vector objects to and from the server. But here I have a problem: there are no ObjectOutputStream supported in J2ME. So I need to convert the Vector array to byte or do something like that.
I was thinking of converting Vector to string , passing it over the network and restoring the original vector back from the string, but it hardly works in the appropriate forms.
In addition, I looked at some frameworks, such as J2ME Polish , but, unfortunately, I could not find the jar files with the API in the installation folder.
So any ideas?
source share