Ver Mensaje Individual
  #6 (permalink)  
Antiguo 11/11/2011, 12:47
herwex
 
Fecha de Ingreso: agosto-2011
Ubicación: d.f
Mensajes: 283
Antigüedad: 13 años, 2 meses
Puntos: 4
Respuesta: mostrar datos usando <s:property value="">

Código PHP:
[PHP
[/PHP]Xerelo acabo de detectar mi error te señalo cual era!!!!!

Código PHP:
public class LeerTxt extends ActionSupport implements ModelDriven<Object>{
    
    private List 
informacion;
------>    private 
Archivo archivo = new Archivo();
    
String uno=null;
    
/**
     * 
     */
    
private static final long serialVersionUID 1L;

    public 
String execute()
    {
        
informacion Util.getDataFromFile(Constantes.ruta);
-------->    
borre esta linea y listo!!    Archivo archivo = new Archivo();
        
        if(
informacion != null)
        {
            
archivo.setUno(informacion.get(0).toString());
            
archivo.setDos(informacion.get(1).toString());
            
archivo.setTres(informacion.get(2).toString());
            
archivo.setCuatro(informacion.get(3).toString());
            
archivo.setCinco(informacion.get(4).toString());
            
            
System.out.println("ya la hice");
            
System.out.println("va un valor "+archivo.getUno());
            
System.out.println("segundo valor "+archivo.getDos());
            
uno=archivo.getUno();
            return 
SUCCESS;
        }
        else
            return 
INPUT;
    }
    
    
    public 
String getUno() {
        return 
uno;
    }


    public 
void setUno(String uno) {
        
this.uno uno;
    }


    public List 
getInformacion() {
        return 
informacion;
    }


    public 
void setInformacion(List informacion) {
        
this.informacion informacion;
    }


    public 
Archivo getArchivo() {
        return 
archivo;
    }


    public 
void setArchivo(Archivo archivo) {
        
this.archivo archivo;
    }


    @
Override
    
public Object getModel() {
        
// TODO Auto-generated method stub
        
return archivo;
    }


Estaba invocando dos veces al mismo objeto muchas gracias Xerelo por tu excelente ayuda como siempre