Home » 2010
java ftp clientcon sockets!

java ftp clientcon sockets!
/*
Copyright Paul James Mutton, 2001-2004, http://www.jibble.org/

This file is part of SimpleFTP.

This software is dual-licensed, allowing you to choose between the GNU
General Public License (GPL) and the www.jibble.org Commercial License.
Since the GPL may be too restrictive for use in a proprietary application,
a commercial license is also provided. Full license information can be
found at http://www.jibble.org/licenses/

$Author: pjm2 $
$Id: SimpleFTP.java,v 1.2 2004/05/29 19:27:37 pjm2 Exp $

*/

import java.io.BufferedInputStream;
import java.io.BufferedOutputStream;
import java.io.BufferedReader;
import java.io.BufferedWriter;
import java.io.File;
import java.io.FileInputStream;
import java.io.IOException;
import java.io.InputStream;
import java.io.InputStreamReader;
import java.io.OutputStreamWriter;
import java.net.Socket;
import java.util.StringTokenizer;

/**
* SimpleFTP is a simple package that implements a Java FTP client. With
* SimpleFTP, you can connect to an FTP server and upload multiple files.
*
* Copyright Paul Mutton, http://www.jibble.org/
*
*/
public class SimpleFTP {

/**
* Create an instance of SimpleFTP.
*/
public SimpleFTP() {

}

/**
* Connects to the default port of an FTP server and logs in as
* anonymous/anonymous.
*/
public synchronized void connect(String host) throws IOException {
connect(host, 21);
}

/**
* Connects to an FTP server and logs in as anonymous/anonymous.
*/
public synchronized void connect(String host, int port) throws IOException {
connect(host, port, "anonymous", "anonymous");
}

/**
* Connects to an FTP server and logs in with the supplied username and
* password.
*/
public synchronized void connect(String host, int port, String user,
String pass) throws IOException {
if (socket != null) {
throw new IOException("SimpleFTP is already connected. Disconnect first.");
}
socket = new Socket(host, port);
reader = new BufferedReader(new InputStreamReader(socket.getInputStream()));
writer = new BufferedWriter(
new OutputStreamWriter(socket.getOutputStream()));

String response = readLine();
if (!response.startsWith("220 ")) {
throw new IOException(
"SimpleFTP received an unknown response when connecting to the FTP server: "
+ response);
}

sendLine("USER " + user);

response = readLine();
if (!response.startsWith("331 ")) {
throw new IOException(
"SimpleFTP received an unknown response after sending the user: "
+ response);
}

sendLine("PASS " + pass);

response = readLine();
if (!response.startsWith("230 ")) {
throw new IOException(
"SimpleFTP was unable to log in with the supplied password: "
+ response);
}

// Now logged in.
}

/**
* Disconnects from the FTP server.
*/
public synchronized void disconnect() throws IOException {
try {
sendLine("QUIT");
} finally {
socket = null;
}
}

/**
* Returns the working directory of the FTP server it is connected to.
*/
public synchronized String pwd() throws IOException {
sendLine("PWD");
String dir = null;
String response = readLine();
if (response.startsWith("257 ")) {
int firstQuote = response.indexOf('\"');
int secondQuote = response.indexOf('\"', firstQuote + 1);
if (secondQuote > 0) {
dir = response.substring(firstQuote + 1, secondQuote);
}
}
return dir;
}

/**
* Changes the working directory (like cd). Returns true if successful.
*/
public synchronized boolean cwd(String dir) throws IOException {
sendLine("CWD " + dir);
String response = readLine();
return (response.startsWith("250 "));
}

/**
* Sends a file to be stored on the FTP server. Returns true if the file
* transfer was successful. The file is sent in passive mode to avoid NAT or
* firewall problems at the client end.
*/
public synchronized boolean stor(File file) throws IOException {
if (file.isDirectory()) {
throw new IOException("SimpleFTP cannot upload a directory.");
}

String filename = file.getName();

return stor(new FileInputStream(file), filename);
}

/**
* Sends a file to be stored on the FTP server. Returns true if the file
* transfer was successful. The file is sent in passive mode to avoid NAT or
* firewall problems at the client end.
*/
public synchronized boolean stor(InputStream inputStream, String filename)
throws IOException {

BufferedInputStream input = new BufferedInputStream(inputStream);

sendLine("PASV");
String response = readLine();
if (!response.startsWith("227 ")) {
throw new IOException("SimpleFTP could not request passive mode: "
+ response);
}

String ip = null;
int port = -1;
int opening = response.indexOf('(');
int closing = response.indexOf(')', opening + 1);
if (closing > 0) {
String dataLink = response.substring(opening + 1, closing);
StringTokenizer tokenizer = new StringTokenizer(dataLink, ",");
try {
ip = tokenizer.nextToken() + "." + tokenizer.nextToken() + "."
+ tokenizer.nextToken() + "." + tokenizer.nextToken();
port = Integer.parseInt(tokenizer.nextToken()) * 256
+ Integer.parseInt(tokenizer.nextToken());
} catch (Exception e) {
throw new IOException("SimpleFTP received bad data link information: "
+ response);
}
}

sendLine("STOR " + filename);

Socket dataSocket = new Socket(ip, port);

response = readLine();
if (!response.startsWith ("125 ")) {
//if (!response.startsWith("150 ")) {
throw new IOException("SimpleFTP was not allowed to send the file: "
+ response);
}

BufferedOutputStream output = new BufferedOutputStream(dataSocket
.getOutputStream());
byte[] buffer = new byte[4096];
int bytesRead = 0;
while ((bytesRead = input.read(buffer)) != -1) {
output.write(buffer, 0, bytesRead);
}
output.flush();
output.close();
input.close();

response = readLine();
return response.startsWith("226 ");
}

/**
* Enter binary mode for sending binary files.
*/
public synchronized boolean bin() throws IOException {
sendLine("TYPE I");
String response = readLine();
return (response.startsWith("200 "));
}

/**
* Enter ASCII mode for sending text files. This is usually the default mode.
* Make sure you use binary mode if you are sending images or other binary
* data, as ASCII mode is likely to corrupt them.
*/
public synchronized boolean ascii() throws IOException {
sendLine("TYPE A");
String response = readLine();
return (response.startsWith("200 "));
}

/**
* Sends a raw command to the FTP server.
*/
private void sendLine(String line) throws IOException {
if (socket == null) {
throw new IOException("SimpleFTP is not connected.");
}
try {
writer.write(line + "\r\n");
writer.flush();
if (DEBUG) {
System.out.println("> " + line);
}
} catch (IOException e) {
socket = null;
throw e;
}
}

private String readLine() throws IOException {
String line = reader.readLine();
if (DEBUG) {
System.out.println("< " + line);
}
return line;
}

private Socket socket = null;

private BufferedReader reader = null;

private BufferedWriter writer = null;

private static boolean DEBUG = false;

}

Conociendo la libreria de correos en java, java mail

Conociendo la libreria de correos en java, java mail
Empezar con JavaMail

En esta serie de artículos vamos a empezar a usar JavaMail. Aunque en la página de SUN ponga que es para J2EE, la verdad es que esta librería nos permite enviar y recibir correos desde cualquier aplicación java.
Veremos en primer lugar qué tenemos que desacargarnos, puesto que JavaMail no viene por defecto con Java y necesita, además, otra librería adicional, JAF (o JavaBeans Activation Framework).
Luego, de la forma más directa posible y un mínimo de explicaciones para entender lo que estamos haciendo, pero sin meterse en profunidades, haremos tres ejemplos con JavaMail: Leer un correo, enviar un correo sencillo y enviar un correo con adjuntos.
Para nuestros ejemplos usaré la cuenta de gmail, así que la configuración que veas es para dicha cuenta. Si tienes otro servidor de correo, tendrás que mirar cómo es la configuración con tu servidor y cambiar los parámetros adecuados en la configuración de JavaMail.


¿Qué necesitamos descargarnos para usar JavaMail?

Para usar JavaMail necesitamos descargarnos la librería de JavaMail de la página de SUN. Puedes bajártela de aquí. Acepta las condiciones, bájate el zip, desempaquétalo y añade los jar que vienen a tu proyecto. Puedes ver cómo hacerlocon eclipse o con la variable CLASSPATHCentro.
JavaMail utiliza otra librería, JAF, que también debes descargarte de aquí. El activation.jar que viene ahí también debes añadirlo a tu proyecto, igual que los anteriores.
Ya tienes todo lo que necesitas para usar JavaMail.

Ejemplos con JavaMail

Vamos a ver tres ejemplos sencillos con JavaMail, de más sencillo a más complejo:
También, puesto que está muy implicado con el correo, una pequeña introducción a los tipos MIME.

Conociendo más de Struts en Java

Conociendo más de Struts en Java
A continuación se muestra la configuracion basica del archivo de struts 2.
Inicia con el encabezado: siempre es igual a no ser que cambie de versión:





Nombre del paquete: El nombre del paquete designa el nombre de la ruta donde se encuentran los archivos clasificados por modulo. Por ejemplo administracion, ventas, seguridad etc...

Ademas incluye  el nombre de la carpeta donde se encuentran los archivos del modulo. por ejemplo en este caso en la carpeta administración existe una carpeta que se llama empresa, dentro de la carpeta empresa deberia estar el archivo empresaAction o el nombre del archivo que se utilizara en struts y que designa el nombre de la accion.


 Nombre de los resultados: Esto significa que cada una de las páginas o jsp que tenemos ejecutara una acción al presionar un boton. Se debe decir cual es el nombre de la página donde se encuentra la acción asi como el nombre o redireccionamiento que provocara esa acción. Por ejemplo podriamos decir que la acción definida en la linea:

tendra como resultado "success" si todo salio bien y que eso significa que despues de ejecutar la acción se redireccionara a la página listar.jsp




Se pueden agregar tantos paquetes como sea necesario al archivo de struts.

A continuación los dejamos con un ejemplo completo del archivo. El ejemplo indica que tenemos una carpeta de administracion con una subcarpeta empresa. La clase java que tiene las acciones de la página se llama empresaAction.java. Ademas que la pagina tiene una acción que se llama listar y que cuando esa acción se ejecuta en el archivo empresaAction.java si todo sale bien redirecciona a "success", eso quiere decir que se muestra la página listar.jsp.

Entradas populares