Follow up to arcsines and J2ME(saving the table)

ok, I've got a table I can only generate on my PC, but I need to somehow package it with a midlet, and have the midlet open it. Midlet's don't support serialization, only persistance(which can only be saved and read on the phone), or any direct file handling class. I'd like a way to do this without having to use the internet connection.

[349 byte] By [dag_dga] at [2007-11-26 21:10:46]
# 1
Use DataOutputStream on the desktop and DataInputStream (around a resource from the class' jar, probably) in the midlet.
YAT_Archivista at 2007-7-10 2:47:47 > top of Java-index,Java Essentials,Java Programming...
# 2
Solved the issue, it loads the table fine now from inside a packaged midlet
dag_dga at 2007-7-10 2:47:47 > top of Java-index,Java Essentials,Java Programming...