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

How to communicate by (socket, Thread) to transfer file?

share|improve this question
1  
Jesus, atleast make an effort to search this site. – Anders Jul 17 '10 at 13:52
Please research before asking questions. There are many sites on how to do Threads and Sockets with examples. Also covered in many books. – Romain Hippeau Jul 17 '10 at 14:30
Here, let me google that for you. tinyurl.com/23c7tvu – naikus Jul 22 '10 at 12:00

2 Answers

Similar solution is posted on following links. You can browse these for your answer:
http://forums.sun.com/thread.jspa?threadID=5372011
http://www.rgagnon.com/javadetails/java-0542.html

You can go through these tutorials and examples for understanding sockets.
http://java.sun.com/developer/onlineTraining/Programming/BasicJava2/socket.html
http://download.oracle.com/docs/cd/E17409_01/javase/tutorial/networking/sockets/

These should definitely help.

share|improve this answer

Your question is pretty vague and broad, so naturally my response is vague and broad.

Threads exist within the same process, running on the same JVM, and share memory and resources. They can share access to resources. This will help you get started.

Since you're interested in transferring a file, I'll assume you want to transfer that file between processes in a logically distributed application (one that is split across JVMs that may or may not be running on the same physical machine). In that case, sockets would be more useful to you.

Sockets are a low level way of approaching this problem. This will help you get started with sockets.

There are other alternatives to sockets, such as Java RMI, JEE Web Services, CORBA, and Java Messaging Service, but whether they're appropriate depends on what you're ultimately trying to achieve.

For something simple, sockets are likely to be adequate, but be prepared for a socket-based approach to become trickier as you attempt more complicated functionality

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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