Java Tip 19: Java makes it easy to copy files from a Web site
Take the weight off Web browsing with this simple copy utility
By John D. Mitchell, JavaWorld.com, 10/01/96
- Digg
- Reddit
- SlashDot
- Stumble
- del.icio.us
- Technorati
- dzone
Page 2 of 2
Please respect the fact that the content of most Web sites is copyrighted by and was created through the hard work of other
people, and act responsibly.
- Digg
- Reddit
- SlashDot
- Stumble
- del.icio.us
- Technorati
- dzone
Resources
- Anil Hemrajani's Web site is located at http://adams.patriot.net/~anil/
Thanks!By Anonymous on November 7, 2009, 12:09 pmI'm writing some code to grab files from a database index and analyze them for a school project, so this is just the amount of code I needed!
Reply | Read entire comment
InefficientBy Anonymous on June 16, 2009, 1:59 pmReading/writing one byte at a time is very slow. Blocking will speed things up a lot... byte[] buf = new byte[4096]; int size = 0; while((size = is.read(buf))...
Reply | Read entire comment
Gracias por la ayuda, me ha sido muy util tu explicacion, solo tuve que montar la autenticacion del proxy y acomodor dos cosas mBy Anonymous on April 27, 2009, 2:23 pmGracias por la ayuda, me ha sido muy util tu explicacion, solo tuve que montar la autenticacion del proxy y acomodor dos cosas mas y listo, excelente.
Reply | Read entire comment
View all comments