Java.io for GWT?

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:

  • InputStream
  • DataInput
  • DataOutput
  • DataInputStream
  • DataOutputStream
  • ByteArrayInputStream
  • ByteArrayOutputStream

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?

+3
source share
1 answer

This is not a separate library, but Google has implemented a little java.io for its Quake 2 port .

+2
source

All Articles