Guide me on network path in new file () eclipse android [message #948604] |
Thu, 18 October 2012 03:17 |
Eclipse User |
|
|
|
Can anyone help me with following code where I've developed in eclipse, here below is my problem line
socket = new Socket(InetAddress.getByName("192.168.9.6"), 80);
File fdst = new File("file:////192.168.9.6/users/kltan/desktop/text.txt");
if(fdst.exists()){
Toast.makeText(getApplicationContext(), "File exists in C:/users/kltan/desktop", Toast.LENGTH_SHORT).show();
}
else
{
Toast.makeText(getApplicationContext(), "File NOT exists in C:/users/kltan/desktop", Toast.LENGTH_SHORT).show();
}
Problem:
I'm actually placed text.text file on my desktop but the execution result will always display not existed.
I'm still not have any idea on how to put the correct network path into new file () constructor. Appreciated to any help if can.
|
|
|
Powered by
FUDForum. Page generated in 0.02976 seconds