How to list all Jsonarray data using JSF?

Asked

Viewed 90 times

0

I’m having trouble listing all the data from JsonArray in a JSF, always remains only the last value, already when I use System.out.println(variavel) I can list everything without problems.

Page JSF who needs to receive the data

<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"
        "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml"
      xmlns:h="http://xmlns.jcp.org/jsf/html"
      xmlns:ui="http://xmlns.jcp.org/jsf/facelets"

      xmlns:f="http://xmlns.jcp.org/jsf/core" xmlns:c="http://java.sun.com/jsp/jstl/core">
<h:head>DashBoard</h:head><br/><br/>


<h:body>
<h:form >
    <h:outputFormat value="#{ethermine.workers.worker}"/>



   <h:commandButton  value="Iniciar" action="#{ethermine.executar}"/>


</h:form>

</h:body>



</html>

Class responsible for converting Jsonarray to object:

import javafx.concurrent.Worker;
import json.org.JSONArray;
import json.org.JSONObject;

import javax.enterprise.inject.Model;

@Model
public class Ethermine {


    private final Workers workers = new Workers();

    private  Conexao conexao = new Conexao();


    public void executar()
    {

    convertJsonForObject(conexao.getJson());


    }

    private void convertJsonForObject(StringBuilder json) {


        JSONObject obj;

        obj = new JSONObject(json.toString());

        JSONArray jArray = obj.getJSONArray("data");

        for(int i = 0; i< jArray.length(); i++){

            JSONObject obj_array_data = jArray.getJSONObject(i);


            System.out.println(obj_array_data.get("worker"));

            workers.setWorker(String.valueOf(obj_array_data.get("worker")));
        }

    }

    public Workers getWorkers() {
        return workers;
    }
}

Class responsible for the connection and having the JSON return:

import java.io.BufferedReader;
import java.io.IOException;
import java.io.InputStream;
import java.io.InputStreamReader;
import java.net.MalformedURLException;
import java.net.URL;
import java.net.URLConnection;


 class Conexao {

     private StringBuilder resultado = new StringBuilder();

     StringBuilder getJson(){


        String address = "https://api.ethermine.org/miner/0940f5fAEF2bba7e1e6288E4bc4E9c75ee334b97/workers";


       System.setProperty("http.agent","chrome");

        try {
            URL url = new URL(address);

            try {
                URLConnection conne = url.openConnection();
                InputStream in = conne.getInputStream();

                InputStreamReader inReader = new InputStreamReader(in);
                BufferedReader out = new BufferedReader(inReader);

                String result;


                while((result = out.readLine()) !=null){

                    this.resultado = resultado.append(result);

                    }

            } catch (IOException e) {
                e.printStackTrace();
            }




        } catch (MalformedURLException e) {
            e.printStackTrace();
        }
            return resultado;
    }

}

Class containing getters and setters :

    public class Workers {

        private Boolean status;
        private String worker;
        private double reportedHashrate;
        private double currentHashrate;
        private Integer validShare;
        private Integer staleShares;
        private Double averageHashrate;


        public void setStatus(Boolean status){

            this.status = status;


        }

        public Boolean getStatus() {
            return status;
        }

        public String getWorker() {
            return worker;
        }

        public void setWorker(String worker) {
            this.worker = worker;
        }

        public double getReportedHashrate() {
            return reportedHashrate;
        }

        public void setReportedHashrate(double reportedHashrate) {
            this.reportedHashrate = reportedHashrate;
        }

        public double getCurrentHashrate() {
            return currentHashrate;
        }

        public void setCurrentHashrate(double currentHashrate) {
            this.currentHashrate = currentHashrate;
        }



   public Integer getValidShare() {
        return validShare;
    }

    public void setValidShare(Integer validShare) {
        this.validShare = validShare;
    }

    public Integer getStaleShares() {
        return staleShares;
    }

    public void setStaleShares(Integer staleShares) {
        this.staleShares = staleShares;
    }

    public Double getAverageHashrate() {
        return averageHashrate;
    }

    public void setAverageHashrate(Double averageHashrate) {
        this.averageHashrate = averageHashrate;
    }
}

When you run, you stay:

DashBoard

Kappauni3

Only, in fact, it has to appear:

Kappauni1
Kappauni2
Kappauni3

Like on the way out of the System.out.println()

1 answer

1


Hello, take a look at this snippet of your code:

JSONArray jArray = obj.getJSONArray("data");
   for(int i = 0; i< jArray.length(); i++){
      JSONObject obj_array_data = jArray.getJSONObject(i);
      System.out.println(obj_array_data.get("worker"));
...

When you read the data, you read from a array. To be able to add all read data you have to add them before in a array also

In this section of your code:

workers.setWorker(String.valueOf(obj_array_data.get("worker")));

Only the last item of the jArray.

What you have to do is something like:

List<String> lista = new ArrayList<String>();
JSONArray jArray = obj.getJSONArray("data");
for(int i = 0 ; i < jArray.length() ; i++){
    lista.add(jArray.getJSONObject(i).getString("worker"));
}

This way you can add all the items in the file Json

Browser other questions tagged

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