Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.
FileInputStream in = new FileInputStream("filetoreadfrom.txt");

while ((c = in.read()) != -1) {

Integer cobj = new Integer(c);
System.out.println("The Current data being read is :" + cobj.byteValue());
out.write(c);
}

The sysouts give an intvalue representing the byte being read.But i want to print the exact character being read.Is there a way to do it?

share|improve this question
1  
0% accept Rate?? I hope you will not go not accepting Jon skeet's answer below... Good way to open your account.. – franklins Oct 24 '11 at 16:38
@fabraham how to accept answers – Rekha Oct 24 '11 at 16:57
you must see a "tick mark below the votes which is disabled now.. as you hover over with your mouse, you should see an instruction to "click that to accept answers".. click on that.. – franklins Oct 24 '11 at 17:06

3 Answers

up vote 1 down vote accepted

Try the type conversion (char) cobj.byteValue()

share|improve this answer
i liked your answer.But how to accept answers in stackoverflow – Rekha Oct 24 '11 at 17:17

In InputStream contains bytes, not characters. What does it even mean to talk about the "character" when you're in the middle of an mp3 file for example?

If you want to read text data, you need a Reader, e.g. an InputStreamReader wrapped around an InputStream with a specific encoding.

share|improve this answer
how to accept answers in stackoverflow – Rekha Oct 24 '11 at 17:22
@Rekha: You click on the tick next to whichever answer you want to accept. – Jon Skeet Oct 24 '11 at 18:19

It's better to use BufferedReader and InputStreamReader but you can also use such code:

BufferedInputStream bis = new BufferedInputStream(new FileInputStream(inputFile));
byte[] buffer = new byte[4096];
int len;
while ((len = bis.read(buffer)) >= 0) {
String line = new String(buffer, 0, len);

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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