i am coding on java networking in wsn, here i need to send a file from one system to another system using wireless connection between two systems so,can anybody suggest me on how to code to send file through wifi to some other system connected.
Welcome to the Java Programming Forums
The professional, friendly Java community. 21,500 members and growing!
The Java Programming Forums are a community of Java programmers from all around the World. Our members have a wide range of skills and they all have one thing in common: A passion to learn and code Java. We invite beginner Java programmers right through to Java professionals to post here and share your knowledge. Become a part of the community, help others, expand your knowledge of Java and enjoy talking with like minded people. Registration is quick and best of all free. We look forward to meeting you.
>> REGISTER NOW TO START POSTING
Members have full access to the forums. Advertisements are removed for registered users.
i am coding on java networking in wsn, here i need to send a file from one system to another system using wireless connection between two systems so,can anybody suggest me on how to code to send file through wifi to some other system connected.
First, at programming level there is no difference between a cabled network and a wireless network. In other words, there isn't a code for cabled communication and a code for wireless communication.
You have to decide and establish what type of protocol to use. At programming level, the lowest level is represented by "sockets" (either UDP sockets or TCP sockets). All other "applicative" protocols are on the top of (typically) TCP sockets.
If you have no/few knowledge about these concepts, please read some guide/tutorial before.
Andrea, www.andbin.net — SCJP 5 (91%) – SCWCD 5 (94%)
Useful links for Java beginners – My new project Java Examples on Google Code
shreyas.s (March 19th, 2014)
Welcome to the forum! Please read this topic to learn how to post code correctly and other useful info for new members.