Don and Leif, I took your advice and updated to the git hub project. It works great. Easy to build and no bugs that I've been able to find. Thank You! Robert
Hi Leif, This is good information.I was actually using open-dis 4.09. I did recently pull this old code and update it to fix a crashing issue in VariableDatum.java at line 114. It seems from a quick read that I could have just updated to the git hub project and also got other nice features such as the removal of all the unused imports. I will do this soon and report back if I find any problems. Thank you for all your hard work on this project. Robert
I recognize this post is old but I came here wondering how to encode floats as ints for packaging in fixed datums using java. The simple answer I eventually found (and the post did help) was to convert each float / double to a byte array and then the byte array to an int. With this little bit of additional understanding, fixed datums work great in open dis and the use of java creates no special problems that I have been able to find.