Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I want to dive into java io and java nio, I am looking for some good materials to study. Do you have some good advice to me , good io blogs ,good io books, or good io skills ,whatever. Thanks in advance

share|improve this question

closed as not constructive by gertas, Bill the Lizard Oct 27 '11 at 12:39

As it currently stands, this question is not a good fit for our Q&A format. We expect answers to be supported by facts, references, or specific expertise, but this question will likely solicit debate, arguments, polling, or extended discussion. If you feel that this question can be improved and possibly reopened, see the FAQ for guidance.

2 Answers

up vote 3 down vote accepted

You probably know the Java Tutorial page: Java IO Tutorial

Skimming through this will give you a basic grasp of the java.io and java.nio packages. I'd recommend you try afterwards to sketch a code that:

  • copies files
  • copy a large file
  • change the encoding of a text file

for the nio package you may look at this entry level code: James Greenfield's tutorial

Also, I'd strongly recommend you to get familiar with Apache's commons-io. After this, if you still desire books (which I doubt) you may try Oreilly's "Java NIO"

share|improve this answer
thanks man, clearly. thanks. – diligent Oct 27 '11 at 13:27

For IO in general, look at the Java Tutorials

For networking I think that Fundamental Networking in Java by Esmond Pitt (EJP on Stackoverflow) is a good book.

share|improve this answer

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