convert byte file to asci

Hi allI'm newbie with java but i need to load a file containing a long stream of bit and i need to convert all this stream in a stream of ascii character.Any idea?Regards
[199 byte] By [gionnyDeepa] at [2007-11-27 2:02:31]
# 1
http://java.sun.com/javase/6/docs/api/java/io/BufferedReader.html http://java.sun.com/javase/6/docs/api/java/io/DataInputStream.htmlIf those links can't help, that I don't understand your question.
kmangolda at 2007-7-12 1:44:00 > top of Java-index,Java Essentials,Java Programming...
# 2

> Hi all

> I'm newbie with java but i need to load a file

> containing a long stream of bit and i need to convert

> all this stream in a stream of ascii character.

> Any idea?

Give up.

The problem as stated is not possible.

Character sets can be converted to other characters sets with limitations (most of the time.)

Conversely the world is full of data which is not characters. If it isn't characters then most definitely can't be converted.

Now if you do have a character set, and not just arbitrary data then the first step is to determine what character set you do have.And that has nothing to do with java.

jschella at 2007-7-12 1:44:00 > top of Java-index,Java Essentials,Java Programming...