Good night everyone.
I have a problem, in case I have a software that runs on port 3333 on a particular computer, and it has an api, but I need to recover it through another computer and get the array using the GSON library Google. Below my code:
import com.google.gson.Gson;
import java.io.IOException;
import java.io.ObjectInputStream;
import java.net.Socket;
import java.net.UnknownHostException;
/**
* Created by diegokappauni on 01/07/17.
*/
class Sistema {
void criarSocket(){
try {
//Abrindo conexão e conectando com o servidor
Socket socket = new Socket("25.96.75.21",3333);
if(socket.isConnected()){
System.out.print("Conexão realizada com sucesso"+"\n");
String requestjson = "{\"id\":0,\"jsonrpc\":\"2.0\",\"method\":\"miner_getstat1\"}";
//Recebendo requisição do servidor
ObjectInputStream objentrada = new ObjectInputStream(socket.getInputStream());
try {
System.out.print(objentrada.readObject().toString());
} catch (ClassNotFoundException e) {
e.printStackTrace();
}
obterDados(requestjson);
//Fechando fluxo de entrada
objentrada.close();
//Fecha o socket após a requisição
socket.close();
}else{
System.out.print("Conexão não realizada");
}
//Checa pra ver se fechou o socket após a requisição
if(socket.isClosed()){
System.out.print("Conexão fechada");
}else{
System.out.println("Conexão ainda aberta");
}
} catch (UnknownHostException UnknowHost){
System.out.print("Endereço vázio ou incorreto: "+UnknowHost.getMessage());
} catch (IllegalArgumentException PortIncorrect){
System.out.println("Porta fora do intervalo 0 - 65535: "+PortIncorrect.getMessage());
}
catch (IOException ErrorCreateSocket) {
System.out.println("Problema ao criar um socket com o servidor: "+ErrorCreateSocket.getMessage());
}
}
private void obterDados(String requestjson){
//Instancia da class GSON
Gson gson = new Gson();
Minerador minerador = gson.fromJson(requestjson,Minerador.class);
System.out.println("id: "+minerador.id);
System.out.print("json-rpc: "+minerador.jsonrpc+"\n");
System.out.print("method: "+minerador.method+"\n");
}
}
The API:
REQUEST:
{"id":0,"jsonrpc":"2.0","method":"getstat1"}
RESPONSE:
{"result": ["9.3 - fe", "21", "182724;51;0", "30502;30457;30297;30481;30479;30505", "0;0;0", "off;off;off;off;off;off", "53;71;57;67;61;72;55;70;59;71;61;70", "teste.com.br", "0;0;0;0"]}
"9.3 - fe" - versão.
"21" - tempo rodando.
"182724" - valor valido.
"30502;30457;30297;30481;30479;30505" -detalhe total
"0;0;0" - velocidade
"off;off;off;off;off;off" - on ou off
"53;71;57;67;61;72;55;70;59;71;61;70" - temp
"teste.com.br" - site
"0;0;0;0" - quantidade invalida