how to download

Collapse
X
 
  • Time
  • Show
Clear All
new posts
  • asandeep25
    New Member
    • Dec 2007
    • 1

    how to download

    hai,
    How to load a file from server to client.
  • MarshMallow
    New Member
    • Nov 2007
    • 52

    #2
    Take a look at Java documentation,e specially to these classes:
    URLConnection : use method openConnection( );
    BufferedInputSt ream : use method getInputStream( ) read() close()
    FileOutputStrea m: use method write() and close()

    Comment

    • heat84
      New Member
      • Nov 2007
      • 118

      #3
      Originally posted by asandeep25
      hai,
      How to load a file from server to client.
      I hope you understand how to use sockets or RMI to connect the client and server in the first place. If you do, then you need to understand the streams you may need to solve your problem.

      Comment

      Working...