Ver Mensaje Individual
  #4 (permalink)  
Antiguo 20/06/2005, 18:52
Avatar de stock
stock
 
Fecha de Ingreso: junio-2004
Ubicación: Monterrey NL
Mensajes: 2.390
Antigüedad: 19 años, 11 meses
Puntos: 53
Tambien pudes usar la clase StringBuffer algo asi:

Código PHP:
impor java.uti.*;

.......

StringBuffer txt = new StringBuffer();

txt.append('C'); 
txt.append('o'); 
txt.append('n'); 
txt.append('t')
txt.append('e'); 
txt.append('n'); 
txt.append('i');
txt.append('d');
txt.append('o');   

System.out.println(txt.toString()); 
have funn