sábado, 6 de maio de 2017

ArrayList - convertendo em string

Apesar do arrayList ser sem dúvidas
muito melhor do que um array simples,
pode acontecer de você futuro programador java
precisar de convertê-lo em uma string.
Neste exemplo lhe mostro como isto pode ser feito,
onde na verdade iremos copiá-lo numa string
manualmente, isto se torna fácil quando aplicamos
um foreach para percorrer cada elemento do ArrayList
e copiar numa String temporária, e em seguida os valores
são copiados numa String definitiva.

Veja abaixo uma imagem do programa em execução:


Veja abaixo o código do programa:



import java.util.ArrayList;
import java.util.Arrays;

public class PROJETO {
     public static void main ( String args [ ] ) {
         int a = 0, i, j;
         String Copia = "";
         J jht = new J ( );
         jht.title ( " " );
         jht.textbackground ( jht.WHITE );
         jht.Moldura ( ( short ) 1, ( short ) 24, ( short ) 2, ( short ) 68 );
         ArrayList < String > arrList = new ArrayList <> ( Arrays.asList (
                   "Ele intercede por ti, minh'alma;\n",
                   "Espera nele, com fé e calma;\n",
                   "Jesus de todos teus males salva,\n",
                   "E te abençoa, dos altos céus.\n") );
         jht.textcolor ( jht.LIGHTRED );
         jht.gotoxy ( ( short ) 15, ( short ) 2 );
         System.out.print ( "ARRAYLIST - CONVERTENDO EM STRING" );
         jht.textcolor ( jht.LIGHTBLUE );
         jht.gotoxy ( ( short ) 18, ( short ) 4 );
         System.out.print ( "Abaixo o ArrayList imprimido" );
        jht.textcolor ( jht.BLACK );
         // ////////////////////////////////////////////////////
         for ( i = 0; i < arrList.size ( ); i++ ) {
              if ( i == 0 )
                   jht.gotoxy ( ( int ) 18, ( int ) 6 );
              if ( i == 1 )
                   jht.gotoxy ( ( int ) 18, ( int ) 7 );
              if ( i == 2 )
                   jht.gotoxy ( ( int ) 18, ( int ) 8 );
              if ( i == 3 )
                   jht.gotoxy ( ( int ) 18, ( int ) 9 );
              if ( i == 4 )
                   jht.gotoxy ( ( int ) 18, ( int ) 10 );
              if ( i == 5 )
                   jht.gotoxy ( ( int ) 18, ( int ) 11 );
              System.out.print ( arrList.get ( i ) );
         }
         jht.getche ( );
        //////////////////////////////////////////////////////
         //Conversão de ArrayList para string
         //foreach percorre cada elemento do ArrayList
         //E copia na String temporária List
         //A String Copia recebe os valores que List
         //recebeu do ArrayList arrList
         for ( String List : arrList )
               Copia += List + "\t\t";
         //////////////////////////////////////////////////////
         jht.textcolor ( jht.LIGHTBLUE );
         jht.gotoxy ( ( short ) 18, ( short ) 12 );
         System.out.print ( "ArrayList convertido para string" );
         jht.textcolor ( jht.BLACK );
         jht.gotoxy ( ( int ) 16, ( int ) 14 );
         System.out.println ( Copia );
         //A coluna esquerda da moldura está sendo
        //refeita através deste método apaga
        jht.textbackground ( jht.LIGHTMAGENTA );
        jht.Apaga ( ( short ) 4, ( short ) 26, ( short ) 0,( short ) 2 );
        jht.textbackground ( jht.WHITE );
         // /////////////////////////////////////////////////////
         jht.Sleep ( ( short ) 1800 );
         jht.textcolor ( jht.LIGHTRED );
         jht.gotoxy ( ( short ) 27, ( short ) 19 );
         System.out.printf ( "Por: " );
         jht.textcolor ( jht.LIGHTBLUE );
         System.out.printf ( "Samuel Lima" );
         jht.textcolor ( jht.BLACK );
         jht.gotoxy ( ( short ) 27, ( short ) 20 );
         System.out.printf ( "sa_sp10@hotmail.com" );
         jht.Sleep ( ( short ) 1800 );
         jht.textcolor ( jht.LIGHTRED );
         jht.gotoxy ( ( short ) 29, ( short ) 22 );
         System.out.printf ( "MUITO OBRIGADO" );
         jht.getche ( );
     }
}

 

Nenhum comentário:

Postar um comentário

Observação: somente um membro deste blog pode postar um comentário.