Otro codigo....esto me desespera.:
Código:
public static void main(String[] args) {
FTPClient client = new FTPClient();
FileInputStream fis = null;
try {
client.connect("IP SERVIDOR");
client.login("USUARIO", "CONTRASEÑA");
//
// Create an InputStream of the file to be uploaded
//
String filename = "ARCHIVO A ENVIAR";
fis = new FileInputStream(filename);
//
// Store file to server
//
client.storeFile(filename, fis);
client.logout();
} catch (IOException e) {
e.printStackTrace();
} finally {
try {
if (fis != null) {
fis.close();
}
client.disconnect();
} catch (IOException e) {
e.printStackTrace();
}
}
}
Creo que aqui el problema es que tengo que ponerle un nombre de dominio, y no la IP. Hay alguna forma de poder poner la IP (tengo un servidor en casa).