huaqing liu

Greenhorn
+ Follow
since Dec 13, 2000
Merit badge: grant badges
For More
Cows and Likes
Cows
Total received
0
In last 30 days
0
Total given
0
Likes
Total received
0
Received in last 30 days
0
Total given
0
Given in last 30 days
0
Forums and Threads
Scavenger Hunt
expand Ranch Hand Scavenger Hunt
expand Greenhorn Scavenger Hunt

Recent posts by huaqing liu

Help!!!
Any one can tell me the API for file timestamp for Windows?
Thanks.
22 years ago
The file string should be this C:\\project\\abc.txt assuming this win32.
Good luck.
22 years ago
Hi. All.
I need to copy a Dir/subDir/files to a new dir. I checked the Class File, but I couldn't find solution. Can some help.
Thanks.
22 years ago
Hi.
Can anyone tell me how to run rmi client/server on VisualCafe.
Thanks.
23 years ago
Just put
Socket clientSocket=new Socket("10.3.158.154 ", 10001);
See if works.
Good luck.
Huaqing Liu
Will this help?
Socket clientSocket=new Socket(hostname, portno);
InetAddress client=clientSocket.getInetAddress();
int port=clientSocket.getLocalPort();
good luck.
I wrote a miniGnutella. I tested on localhost. I had 10 servers running. After fulfill the first client's request, 3 servers down. If I run 6 servers, after fulfill client's request, 1 server down. All server code is the same except different configuration file on the server different. I wondering if anyone has experience with this that multiserver on a machine would cause some problem. If anyone wants to look at a code(very bad code), give me a notice.
Thanks.