FTP? Hmm...

Sharky Forums


Results 1 to 5 of 5

Thread: FTP? Hmm...

  1. #1
    Hammerhead Shark nukefault's Avatar
    Join Date
    Nov 2000
    Location
    Denton, TX
    Posts
    1,095

    FTP? Hmm...

    I'm a semi-experienced programmer, but I'm trying to write a bare-bones FTP client and don't have much experience in net stuff. Can anyone recommend a good place to start. I know a good bit of C++, some Java, and a little VB. This app just needs very basic functionality - upload, download, list directory, etc so I'm wondering 1. what language to go with, remembering that I'm trying to make this as quick and easy as possible and that actual real-world usefulness isn't an issue as long as it works and 2. if there's any specific package that would make it easier. I've heard some good things about the .NET series...

    Thanks!

  2. #2
    Hammerhead Shark Harbinger's Avatar
    Join Date
    Oct 2002
    Location
    Boston, MA
    Posts
    1,794
    I'd recommend java. Works on any OS and the GUI stuff is pretty easy to implement though not exactly intuitive. Also, java is easier to work with as I'm sure you've seen since no pointers/references. That's just my 2 cents, most complicated prog I wrote in java was a web spider with searching ability so this is a bit over my head.
    Athlon 64 3200+ | 2*512 Corsair XMS | eVGA 6800 gt | Asus K8V Deluxe | 2*80 gb SATA WD (Raid 0) | WD 80GB | WD 320GB | Dell 2407WFP | Audigy 2 ZS Platinum | Klipsch 5.1 Ultras | Senn HD-280s

  3. #3
    NullPointerException rock's Avatar
    Join Date
    Sep 2000
    Location
    York, PA
    Posts
    6,203
    I'd also recommend Java. In fact, have a read of the Networking section in Chapter 2 of Core JAVA 2 Volume II - Advanced Features and you'll be well over 1/2 way there. Compared to C, networking is almost too easy in Java.

    Open Source is free like a puppy is free.

    It's only when you look at an ant through a magnifying glass on a sunny day that you realise how often they burst into flames.

    Understanding Evolution

  4. #4
    Mako Shark dighn's Avatar
    Join Date
    Nov 2000
    Location
    Vancouver, BC Canada
    Posts
    3,171
    Originally posted by Harbinger
    java is easier to work with as I'm sure you've seen since no pointers/references.
    just a nitpick but java uses references for objects
    .

  5. #5
    Hammerhead Shark Harbinger's Avatar
    Join Date
    Oct 2002
    Location
    Boston, MA
    Posts
    1,794
    Well yes it does but you don't have to do it explicitly, java does all the memory management for you, I just meant you didn't have to use * and & terminology as in c++. Just make sure you understand what java is doing
    Athlon 64 3200+ | 2*512 Corsair XMS | eVGA 6800 gt | Asus K8V Deluxe | 2*80 gb SATA WD (Raid 0) | WD 80GB | WD 320GB | Dell 2407WFP | Audigy 2 ZS Platinum | Klipsch 5.1 Ultras | Senn HD-280s

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •