Uma forma é usando GSon: https://github.com/google/gson
class Response {
String result;
Data data;
}
class Data {
String source_ip;
int source_port;
}
public static void main(String[] args) {
String response = "{\"result\":\"sucess\",\"data\":{\"source_ip\":\"192.168.0.100\",\"source_port\":80,\"subnet_mask\":\"255.255.255.0\",\"gateway_ip\":\"192.168.0.1\", \"mac_address\":\"04-91-62-DC-D8-76\"}}";
Response parsed = new Gson().fromJson(response, Response.class);
System.out.println("Result: " + parsed.result);
System.out.println(String.format("Source: %s:%d", parsed.data.source_ip, parsed.data.source_port));
}