I had created a user in FileZilla Server App.It's server Address is "127.0.0.1" and it's port is "14147".I can connect to it from FileZilla
and also browse it in my browser whitout any problem.But I can not connect to it with my Android emulator.This is my code:
public FTPClient ftp = new FTPClient();
ftp.connect("127.0.0.1:14147");
But I get this in Logcat:
java.net.SocketException: Host is unresolved: 127.0.0.1:14147
Is there any thing wrong?