Re: JDBC for csv inputstream



Thank you,
I saw that one, but:
1. I need something which is free.
2. I think that csv_jdbc does not deals with inputstream (or reader)
but with files, isn't it?
Thank you,
Asaf

.



Relevant Pages

  • Re: reading bytes with BufferedReader?
    ... you push it back and open a new InputStream from the pushback stream ... Well you can't even do that for a start, you can't put an InputStream on top of a Reader. ... Ok, its not opening up a new InputStream, but you are still using the underlying stream directly. ...
    (comp.lang.java.programmer)
  • Re: What replaces StringBufferInputStream
    ... since 1.1, Java doesn't want you to use an InputStream for anything, but ... a Reader (unless you need a DataInputStream). ... There is, so to speak, an impedance mismatch between strings and streams, which is why, since 1.1, strings are supposed to be processed by Reader and Writer classes. ...
    (comp.lang.java.programmer)
  • Re: What replaces StringBufferInputStream
    ... since 1.1, Java doesn't want you to use an InputStream for anything, but ... a Reader. ... There is, so to speak, an impedance mismatch between strings and streams, which is why, since 1.1, strings are supposed to be processed by Reader and Writer classes. ... for anything" without the "Only for reading and writing raw bytes". ...
    (comp.lang.java.programmer)
  • Re: What replaces StringBufferInputStream
    ... case, since 1.1, Java doesn't want you to use an InputStream for ... but a Reader (unless you need a DataInputStream). ... (In fact, judging from what I read in this ng, many applications, or would-be ...
    (comp.lang.java.programmer)
  • Re: What replaces StringBufferInputStream
    ... StringBufferInputStream is deprecated, and the documentation points to ... InputStream in = new StringBufferInputStream; ... In the normal case, since 1.1, Java doesn't want you to use an InputStream for anything, but a Reader. ...
    (comp.lang.java.programmer)