Loop for from index 1 java array

Asked

Viewed 55 times

0

I have a function that makes a loop for in a String array. I need the loop to start from the index[1] of that array. But I’m not getting it.

 String arquivo[] = arquivoDecodificado.split("\r\n|\r|\n");
         for(String linha: arquivo ) {
            String[] linhaQuebrada= linha.split(";");
            Pessoas idPessoa = pessoasService.buscarPessoaComCnpj(linhaQuebrada[0],idEntidade);
            operadoraCart.setEntidade(ent);
            operadoraCart.setPessoa(idPessoa);
            operadoraCartaoService.cadastrar(operadoraCart);

         }

I need him to start the loop from arquivo[1]

1 answer

3


I believe I could do it like this:

 String arquivo[] = arquivoDecodificado.split("\r\n|\r|\n");

         for(int i = 1; i < arquivo.length; ++i ) {
            String[] linhaQuebrada= arquivo[i].split(";");
            Pessoas idPessoa = pessoasService.buscarPessoaComCnpj(linhaQuebrada[0],idEntidade);
            operadoraCart.setEntidade(ent);
            operadoraCart.setPessoa(idPessoa);
            operadoraCartaoService.cadastrar(operadoraCart);

         }

Browser other questions tagged

You are not signed in. Login or sign up in order to post.