I need to split an audio or large image file in J2ME before uploading it. How can i split/ break a file in to pieces in JavaME.
|
What API for file loading do you use? 1)If FileConnection API you can load data by blocks. There is no problem in this case. 2)If you use Class.getResourceAsStream( String pathInsideJar ) you will have problems. Most of KVMs load resource fully before returning control to your code. So I see one way - to split big file into several small files before creating jar. |
|||
|
So you will have Vector of several byte arrays. And you can send it one by one. Or read all file data into one byte array and post this data by parts with shifting start position of sending data. |
|||
|
|