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

My question is: How to search file in other pc connected through lan in java?

share|improve this question
Please be more specific. How is your setup? What kind of server, if any, is on the other PC? (ftp, samba, http, dlna?!?! ...) What have you tried so far? Also, have a look at stackoverflow.com/questions/how-to-ask – Jacob Jun 1 '11 at 5:34
What are your options to access the other machine? Is it a windows machine with a shared folder or unix with NFS or FTP or something else entirely? – Eelke Jun 1 '11 at 5:36

1 Answer

up vote 1 down vote accepted

I wouldn't even try. I would execute a task at the remote node to search locally. You will regret this from both a performance point of view and a reliability point of view. In my experience it is a major mistake for applications to deal with remote file systems in any way whatsoever.

share|improve this answer
sorry for that, well, it be windows system connected through LAN. So , what would be the best approach to do this? – mH16 Jun 1 '11 at 6:16
@hussain: 'I would execute a task at the remote node to search locally' ... and organize some TCP/IP communications between them, e.g. HTTP or RMI or Sockets. – EJP Jun 1 '11 at 6:43

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.