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();
}