Ver Mensaje Individual
  #11 (permalink)  
Antiguo 28/05/2009, 15:50
guu
 
Fecha de Ingreso: mayo-2009
Mensajes: 7
Antigüedad: 15 años, 7 meses
Puntos: 0
Respuesta: enviar archivo a servidor ftp

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).