Are there open source libraries that offer the implementation of some or all of the java.io classes and interfaces? In particular, I am looking for options:
InputStreamDataInputDataOutputDataInputStreamDataOutputStreamByteArrayInputStreamByteArrayOutputStream
If I were writing an application from scratch, I would simply not use them, but now I am migrating an existing Java application to GWT. Modifying existing code to avoid using these classes is simply not practical.
Since none of the classes are related to file I / O, I believe that this should be simple enough to implement these specific classes for GWT. Did I miss something?
source
share