terça-feira, 9 de maio de 2017

Convertendo array de string em ArrayList

Se converter um array bidimensional de string
em ArrayList já foi uma moleza, imagine o quanto
foi fácil converter um array de string em ArrayList!
Só bastou eliminar uma das dimensões,
Está aqui o resultado disto.


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


Veja abaixo o código do programa:


import java.util.ArrayList;

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, j = 0;
         String [ ] texto = {
                   "Os EUA deram início à instalação de um escudo antimísseis",
                   "destinado a proteger o território sul-coreano contra",
                   "foguetes de médio e longo alcance. Mas os sistemas",
                 "ocidentais podem, realmente, conter todos os disparos?"};
         ArrayList < String > arrList = new ArrayList < String > ( );
         jht.textcolor ( jht.LIGHTRED );
         jht.gotoxy ( ( short ) 16, ( short ) 2 );
         System.out.printf ( "CONVERTENDO ARRAY DE STRING EM ARRAYLIST" );
         jht.textcolor ( jht.LIGHTBLUE );
         jht.gotoxy ( ( short ) 18, ( short ) 4 );
         System.out.printf ( "Impressão normal do Array de string" );
         // //////////////////////////////////////////
         jht.textcolor ( jht.BLACK );
         for ( i = 0; i < texto.length; i++ ) {
              if ( i == 0 )
                   jht.gotoxy ( ( int ) 5, ( int ) 6 );
              if ( i == 1 )
                   jht.gotoxy ( ( int ) 5, ( int ) 7 );
              if ( i == 2 )
                   jht.gotoxy ( ( int ) 5, ( int ) 8 );
              if ( i == 3 )
                   jht.gotoxy ( ( int ) 5, ( int ) 9 );
              System.out.print ( " " );
              System.out.printf ( texto [ i ] );
         }
         // //////////////////////////////////////////
         jht.getche ( );
         int tam = texto.length;
         for ( i = 0; i < tam; ++i ) {
              arrList.add ( texto [ i ] );
         }
         jht.textcolor ( jht.LIGHTBLUE );
         jht.gotoxy ( ( short ) 18, ( short ) 11 );
         System.out.printf ( "Abaixo a impressão do ArrayList" );
         // ////////////////////////////////////////////
         jht.textcolor ( jht.LIGHTMAGENTA );
         for ( i = 0; i < arrList.size ( ); i++ ) {
              if ( i == 0 )
                   jht.gotoxy ( ( int ) 5, ( int ) 13 );
              if ( i == 1 )
                   jht.gotoxy ( ( int ) 5, ( int ) 14 );
              if ( i == 2 )
                   jht.gotoxy ( ( int ) 5, ( int ) 15 );
              if ( i == 3 )
                   jht.gotoxy ( ( int ) 5, ( int ) 16 );
              System.out.print ( " " );
              System.out.printf ( arrList.get ( i ) );
         }
         // ////////////////////////////////////////////
         jht.textbackground ( jht.WHITE );
         jht.Sleep ( ( short ) 1800 );
         jht.textcolor ( jht.LIGHTBLUE );
         jht.gotoxy ( ( short ) 23, ( short ) 19 );
         System.out.printf ( "Por: " );
         jht.textcolor ( jht.LIGHTBLUE );
         System.out.printf ( "Samuel Lima" );
         jht.textcolor ( jht.BLACK );
         jht.gotoxy ( ( short ) 23, ( 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 ( );
     }
}



//CONVERTENDO ARRAY DE STRING EM ARRAYLIST
import java.util.ArrayList;
import java.util.Arrays;
import java.util.List;

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, j = 0;
         String [ ] texto = {
                   "Os EUA deram início à instalação de um escudo antimísseis",
                   "destinado a proteger o território sul-coreano contra",
                   "foguetes de médio e longo alcance. Mas os sistemas",
                 "ocidentais podem, realmente, conter todos os disparos?"};
         //ArrayList < String > arrList = new ArrayList < String > ( );
         List arrList = new ArrayList ( Arrays.asList ( texto ) );
         jht.textcolor ( jht.LIGHTRED );
         jht.gotoxy ( ( short ) 16, ( short ) 2 );
         System.out.printf ( "CONVERTENDO ARRAY DE STRING EM ARRAYLIST" );
         jht.textcolor ( jht.LIGHTBLUE );
         jht.gotoxy ( ( short ) 18, ( short ) 4 );
         System.out.printf ( "Impressão normal do Array de string" );
         // //////////////////////////////////////////
         jht.textcolor ( jht.BLACK );
         for ( i = 0; i < texto.length; i++ ) {
              if ( i == 0 )
                   jht.gotoxy ( ( int ) 5, ( int ) 6 );
              if ( i == 1 )
                   jht.gotoxy ( ( int ) 5, ( int ) 7 );
              if ( i == 2 )
                   jht.gotoxy ( ( int ) 5, ( int ) 8 );
              if ( i == 3 )
                   jht.gotoxy ( ( int ) 5, ( int ) 9 );
              System.out.print ( " " );
              System.out.printf ( texto [ i ] );
         }
         // //////////////////////////////////////////
         jht.getche ( );
         jht.textcolor ( jht.LIGHTBLUE );
         jht.gotoxy ( ( short ) 18, ( short ) 11 );
         System.out.printf ( "Abaixo a impressão do ArrayList" );
         // ////////////////////////////////////////////
         jht.textcolor ( jht.LIGHTMAGENTA );
         for ( i = 0; i < arrList.size ( ); i++ ) {
              if ( i == 0 )
                   jht.gotoxy ( ( int ) 5, ( int ) 13 );
              if ( i == 1 )
                   jht.gotoxy ( ( int ) 5, ( int ) 14 );
              if ( i == 2 )
                   jht.gotoxy ( ( int ) 5, ( int ) 15 );
              if ( i == 3 )
                   jht.gotoxy ( ( int ) 5, ( int ) 16 );
              System.out.print ( " " );
              System.out.print ( arrList.get ( i ) );
         }
         // ////////////////////////////////////////////
         jht.textbackground ( jht.WHITE );
         jht.Sleep ( ( short ) 1800 );
         jht.textcolor ( jht.LIGHTBLUE );
         jht.gotoxy ( ( short ) 23, ( short ) 19 );
         System.out.printf ( "Por: " );
         jht.textcolor ( jht.LIGHTBLUE );
         System.out.printf ( "Samuel Lima" );
         jht.textcolor ( jht.BLACK );
         jht.gotoxy ( ( short ) 23, ( 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.