sábado, 6 de maio de 2017

ArrayList - convertendo em array de 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 num array de string.
Neste exemplo lhe mostro como isto pode ser feito,
onde na verdade iremos copiá-lo num array de string
manualmente, isto se torna fácil depois de termos
nas mãos o tamanho do ArrayList pelo método size,
e separando cada elemento pelo método get.
Vindo após isto uma atribuição normal ao array de string.

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 i, j;
         boolean pos = false;
         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 (
                   "No princípio criou Deus o céu e a terra.",
                   "E a terra era sem forma e vazia;",
                   "e havia trevas sobre a face do abismo;",
                   "e o Espírito de Deus se movia",
                   "sobre a face das águas.") );  
         jht.textcolor ( jht.LIGHTRED );
         jht.gotoxy ( ( short ) 15, ( short ) 2 );
         System.out.print ( "ARRAYLIST - CONVERTENDO EM ARRAY DE 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 array de string
         String array [ ] = new String [ arrList.size( ) ]; 
         for( j = 0; j < arrList.size ( );j++ ) {
           array [ j ] = arrList.get ( j );
         }
         //////////////////////////////////////////////////////
         jht.textcolor ( jht.LIGHTBLUE );
         jht.gotoxy ( ( short ) 18, ( short ) 12 );
         System.out.print ( "ArrayList convertido para array de string" );
         jht.textcolor ( jht.GRAY );
         for ( i = 0; i < array.length; i++ ) {
              jht.gotoxy ( ( int ) 18, ( int ) i + 14 );
              System.out.println ( array [ i ] );
         }
         jht.getche ( );
         // /////////////////////////////////////////////////////
         jht.Sleep ( ( short ) 1800 );
         jht.textcolor ( jht.LIGHTRED );
         jht.gotoxy ( ( short ) 27, ( short ) 20 );
         System.out.printf ( "Por: " );
         jht.textcolor ( jht.LIGHTBLUE );
         System.out.printf ( "Samuel Lima" );
         jht.textcolor ( jht.BLACK );
         jht.gotoxy ( ( short ) 27, ( short ) 21 );
         System.out.printf ( "sa_sp10@hotmail.com" );
         jht.Sleep ( ( short ) 1800 );
         jht.textcolor ( jht.LIGHTRED );
         jht.gotoxy ( ( short ) 29, ( short ) 23 );
         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.