Ver Mensaje Individual
  #3 (permalink)  
Antiguo 24/10/2003, 21:03
Avatar de bakanzipp
bakanzipp
 
Fecha de Ingreso: noviembre-2001
Ubicación: santiago de shilli
Mensajes: 2.554
Antigüedad: 23 años, 1 mes
Puntos: 0
sorry se me fueron unas variables
Código PHP:
import java.io.FileOutputStream;
import java.io.FileInputStream;

public class 
tu_clase extends SuperClase{

String path    "c:\"
strName = "
lo que quieras";
File f   = new File(path + strName + "
.txt");
FileOutputStream fos = new FileOutputStream(f);

String data ="
informacion a ingresar en el archivo" ;
fos.write(data.getBytes());
fos.close();