No one has voted on any posts yet. Votes from other community members are used to determine a member's reputation amongst their peers.
3 Posted Topics
Re: Hi !!! I built a program for msg transfer in java using udp. //udp server import java.net.*; import java.io.*; class Server { public static void main(String args[])throws IOException { byte b[]=new byte[1024]; DatagramSocket ds=new DatagramSocket(5001); DatagramPacket dp=new DatagramPacket(b,1024); //System.out.println("receiving"); ds.receive(dp); String str=new String(dp.getData(),0,dp.getLength()); //receive file name System.out.println("Received file "+str); FileReader … | |
I developed a pgm for msg transfer using UDP.i need a source code for transfering file using UDP and (with GUI), More details:After entering name of file on clients gui,the server should transfer the file to client and the contents of the file should be displayed on clients gui. | |
i need guidance to develope a pgm for msg transfering using tcp.i alredy developed this for single client and single server but i need to transfer msg from one client to another via single server. |
The End.