vote up 0 vote down star

Hello everyone!

Background story:

There are these Source and Result interfaces for XML. These are adapters between different XML technologies in Java. Instances of these classes represent DOM, SAX, JAXB, XML streams, XML events (and even more?).

The question:

So, is there something comparable for plain old strings? Some generalization between the following?

  • [Input|Output]Stream
  • Reader|Writer
  • StringBuffer
  • StringBuilder
  • CharBuffer (from NIO)
  • File (or Path for the JDK7-fans among us)
  • (and finally) CharSequence

Perhaps there is some common API (Apache commons something...?) which provides such functionality?

Clarifying example:

Usage with classic approach:

An interface needs to be able to read (write) characters from (to) all possible sources (results):

interface SomeInterface {
    readFrom(CharacterSequence source);
    readFrom(InputStream source);
    readFrom(Reader source);
    readFrom(File source);
    // ...
    writeTo(CharacterSequence result);
    writeTo(OutputStream result);
    writeTo(Writer result);
    writeTo(File result);
    // ...
}

Usage with intended approach:

With some imaginary CharacterSource and CharacterResult interfaces, read/write now possible with one method each:

interface SomeInterface {
    readFrom(CharacterSource source);
    writeTo(CharacterResult result);
}

Intended approach implementation, possible hierarchy:

interface CharacterSource
+ class CharBufferSource
+ class InputStreamSource
+ class ReaderSource
+ class FileSource
+ ...

interface CharacterResult
+ class CharBufferResult
+ class OutputStreamResult
+ class WriterResult
+ class FileResult
+ ...

If such functionality is not present, should I write an own mini-API? (for a larger API, I'm currently involved at)

What's about this?

flag

80% accept rate
1  
Can you explain what such an interface would look like, and why one would want to use it? – Jonathan Feinberg Oct 14 at 17:42
added clarifying example code – java.is.for.desktop Oct 14 at 18:14

3 Answers

vote up 1 vote down check

There's this (yep - Apache Commons).

link|flag
Hm, utility classes, looks litte unhandy. But thanks anyway ;) – java.is.for.desktop Oct 14 at 18:24
vote up 0 vote down

Aren't Google's common-io's InputSupplier and OutputSupplier similar things to my proposed interfaces? (A way to generalize all possible streams of input and output)

The strange thing is, the type parameter of Google's interfaces doesn't have any constraints (I was thinking of Closable or something).

link|flag
vote up 0 vote down

You can generalise your interface by using Reader and Writer. If you wish to read from / write to a File you can use FileReader / FileWriter. Likewise you can use other Reader / Writer implementations to read from / write to a String (i.e. CharSequence) or a stream.

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.