Hi I have a question regarding the concatenation of the small cap-files (header.cap, etc) in a raw .cap-file which are to become a GP specified .cap-file. When adding these together in java is it necessary to use FileOutputStream or can I just use a bytestream such as byte[]? I mean is there a finalize function of FileOutputStream that is necessary to be done to the file?
Or can I just take the byte-code of these small .cap-files and do something like this: (this example is for the header.cap part only) System.arraycopy(HEADER_CAP_BYTE_VECTOR, 0, LOAD_BYTE_VECTOR, 0, HEADER_CAP_BYTE[].length) where the HEADER_CAP_BYTE_VECTOR and LOAD_BYTE_VECTOR are of the type byte[]. Anyone got some clues? Regards, Johannes _______________________________________________ Muscle mailing list [email protected] http://lists.drizzle.com/mailman/listinfo/muscle
