0

The Java Micro Edition SDK does not include java.io.BufferedOutputStream. Does anyone know of a suitable replacement which is present within the SDK?

http://docs.oracle.com/javase/1.5.0/docs/api/java/io/BufferedOutputStream.html

Thanks,

Adam

Adam
  • 59
  • 1
  • 6

1 Answers1

0

I don't know of a replacement, but BufferedOutputStream doesn't contain much code. Just duplicate it from the full blown JDK source to your own replacement class. There is no rocket science in the class anyway.

Durandal
  • 19,919
  • 4
  • 36
  • 70