FRESHERSHOME![]() |
This is a discussion on can ne 1 convert ds java prgrm to c/c++ program? within the JAVA forums, part of the Languages category; First the Server: import java.net.*; import java.io.*; import java.util.*; public class DateServer { public static void main (String args[]) throws ...
| |||||||
| Notices |
| JAVA JAVA Discussion Forum, Jave Related help |
![]() |
| | Thread Tools | Display Modes |
|
#1
| |||
| |||
| First the Server: import java.net.*; import java.io.*; import java.util.*; public class DateServer { public static void main (String args[]) throws IOException { int port = 1234; ServerSocket server = new ServerSocket(port); while (true) { System.out.println("Waiting for client..."); Socket client = server.accept(); System.out.println("Client connected."); OutputStream out = client.getOutputStream(); Date date = new Date(); byte b[] = date.toString().getBytes(); out.write(b); } } } Now the client import java.net.*; import java.io.*; public class DateClient { public static void main (String args[]) throws IOException { Socket server = new Socket("localhost",1234); System.out.println("Connected”) InputStream in = server.getInputStream(); byte b[] = new byte[100]; int num = in.read(b); String date = new String(b); System.out.println("Server said: "+date); } }
__________________ Powered by Yahoo! |
|
#2
| |||
| |||
| i'll do a try |
![]() |
| Thread Tools | |
| Display Modes | |
|
|
Sitemap
Jobs by Location: Advertising and Marketing Jobs - IT Software Jobs - Walk-in Jobs - BPO Jobs - Government Jobs - Sales / BD Jobs - Tele Communication Jobs App Programming - Network Admin
Jobs By Location: Jobs in Bangalore - Jobs In India - Jobs in Delhi - Jobs in Hyderabad - Jobs in Kochi - Jobs in Mumbai - Jobs in Trivandrum - Jobs in pune - Jobs in Jonida - Jobs in Chennai - Jobs in Coimbator
Jobs Type: Full Time Jobs - Part Time Jobs
Latest Jobs - Accounting Jobs - Engineering Jobs - IT Jobs - Walkins - How to Face Interview - HR Round Tips - Career Info - Guide For Freshers - Apply for Jobs - Future Studies - Jobs Forums - Freshers IT Software Salary Details