Results 1 to 4 of 4
Thread: Coding an FTP server in java
- 02-07-2008, 04:43 AM #1
Member
- Join Date
- Feb 2008
- Posts
- 1
- Rep Power
- 0
Coding an FTP server in java
Hi, im new to Java and am in the beginning stages of socket programming. I am trying to build a simple file transfer protocol that can support the reliable transfer of files of at least 1 mb in size. I can set up a client and server connection to send strings back in forth but I'm not for sure how to code it to where I can actually pull files off my computer to send to the server. Is there anyone who could give me an example of how to actually send real files and not just strings? Would be greatly appreciated. THANKS
- 03-29-2008, 05:13 AM #2
Member
- Join Date
- Mar 2008
- Posts
- 3
- Rep Power
- 0
to send a file ...
server side=
create InputStream to the file to send
read in bytes to byte array
send byte array
client side=
create file
create outputstream to that file
write the bytes from byte array that you received to that file
- 05-30-2008, 10:39 PM #3
Member
- Join Date
- Jul 2007
- Posts
- 14
- Rep Power
- 0
If you are going to write an FTP server I would recommend starting with reading the RFC 959 which describes the protocol itself.
- 06-22-2008, 04:24 AM #4
Do you mean implement the FTP as specified in the RFCs? Or just a file protocol?
Do you need to handle big endian and little endian transfers? Machine that don't use 8 bit bytes?
To do it in general is fairly difficult, getting through firewalls, etc. But for an assignment, you can simplify the requirements.
Similar Threads
-
Help On Coding problem
By mandrake446 in forum New To JavaReplies: 3Last Post: 12-08-2007, 07:01 AM -
Error in my coding
By one198 in forum New To JavaReplies: 2Last Post: 10-13-2007, 05:07 AM -
Cannot solve the coding problem of my assignment
By elimmom in forum New To JavaReplies: 3Last Post: 08-13-2007, 11:33 AM -
Problem in my coding
By one198 in forum New To JavaReplies: 9Last Post: 08-09-2007, 10:07 AM -
Help with program coding
By cachi in forum AWT / SwingReplies: 1Last Post: 07-31-2007, 07:16 AM


LinkBack URL
About LinkBacks
Reply With Quote
Bookmarks