segunda-feira, 8 de maio de 2017

ArrayList - copiando em outro ArrayList

É perfeitamente possível copiar o conteúdo
de um ArrayList em um outro ArrayList vazio.
Neste exemplo temos uma maneira clara de se
fazer isto, e pode ser que você precise disto
em breve.

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 [ ] ) {
         J jht = new J ( );
         jht.textbackground ( jht.WHITE );
         jht.Moldura ( ( short ) 1, ( short ) 24, ( short ) 2, ( short ) 68 );
         jht.title ( " " );
         int i;
         ArrayList < String > arrList = new ArrayList <> ( Arrays.asList (
                   "Estima-se que, ao fumar um cigarro,",
                   "colocamos nosso corpo em contato com",
                   "mais de 4700 substâncias tóxicas,",
                   "sendo a nicotina, o monóxido de carbono",
                   "e o alcatrão as mais perigosas.") );        
         jht.textcolor ( jht.LIGHTRED );
         jht.gotoxy ( ( short ) 23, ( short ) 2 );
         System.out.printf ( "ARRAYLIST - COPIANDO CONTEÚDO" );
         jht.textcolor ( jht.LIGHTBLUE );
         jht.gotoxy ( ( short ) 18, ( short ) 4 );
         System.out.printf ( "Abaixo a impressão normal do ArrayList" );
         // ////////////////////////////////////////////
         jht.gotoxy ( ( int ) 18, ( int ) 6 );
         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 );
              System.out.print ( " " );
              System.out.printf ( arrList.get ( i ) );
         }
         jht.getche ( );
         ArrayList < String > arrList_2 = new ArrayList < String > ( arrList.size ( ) );
         for ( String Val : arrList ) {
              arrList_2.add ( Val );
         }
         // ////////////////////////////////////////////
         jht.textcolor ( jht.LIGHTBLUE );
         jht.gotoxy ( ( short ) 18, ( short ) 12 );
         System.out.printf ( "Abaixo a cópia do ArrayList 1 no ArrayList 2" );
         jht.textcolor ( jht.LIGHTMAGENTA );
         jht.gotoxy ( ( int ) 18, ( int ) 14 );
         for ( i = 0; i < arrList_2.size ( ); i++ ) {
              if ( i == 0 )
                   jht.gotoxy ( ( int ) 18, ( int ) 14 );
              if ( i == 1 )
                   jht.gotoxy ( ( int ) 18, ( int ) 15 );
              if ( i == 2 )
                   jht.gotoxy ( ( int ) 18, ( int ) 16 );
              if ( i == 3 )
                   jht.gotoxy ( ( int ) 18, ( int ) 17 );
              if ( i == 4 )
                   jht.gotoxy ( ( int ) 18, ( int ) 18 );
              System.out.print ( " " );
              System.out.printf ( arrList_2.get ( i ) );
         }
         // ////////////////////////////////////////////
         jht.textbackground ( jht.WHITE );
         jht.Sleep ( ( short ) 1800 );
         jht.textcolor ( jht.LIGHTBLUE );
         jht.gotoxy ( ( short ) 23, ( short ) 20 );
         System.out.printf ( "Por: " );
         jht.textcolor ( jht.LIGHTBLUE );
         System.out.printf ( "Samuel Lima" );
         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.