Tie is from index 1 array java

0

I have a function that makes a for loop in a String array. I need the loop to start from 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 it to start the loop from arquivo[1]

    
asked by anonymous 12.06.2018 / 15:22

1 answer

3

I think I could do 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);

         }
    
12.06.2018 / 15:30