I answered this question
This is the code:
import java.net.NetworkInterface;
import java.net.SocketException;
import java.util.Collections;
import java.util.HashSet;
import java.util.List;
import java.util.Set;
The method!
private String[] getHostAddresses() {
Set<String> HostAddresses = new HashSet<>();
try {
for (NetworkInterface ni : Collections.list(NetworkInterface.getNetworkInterfaces())) {
if (!ni.isLoopback() && ni.isUp() && ni.getHardwareAddress() != null) {
for (InterfaceAddress ia : ni.getInterfaceAddresses()) {
if (ia.getBroadcast() != null) { //If limited to IPV4
HostAddresses.add(ia.getAddress().getHostAddress());
}
}
}
}
} catch (SocketException e) { }
return HostAddresses.toArray(new String[0]);
}
Now I want to translate using Lamba Stream Java 8 based on. Here my code:
try {
Collections.list(NetworkInterface.getNetworkInterfaces())
.stream()
.filter(ni -> !ni.isLoopback()) //unreported exception SocketException; must be caught or declared to be thrown
.filter(ni -> ni.isUp()) //unreported exception SocketException; must be caught or declared to be thrown
.filter(ni -> ni.getHardwareAddress() != null) //unreported exception SocketException; must be caught or declared to be thrown
.flatMap(ni -> ni.getInterfaceAddresses().stream())
.filter(ia -> ia.getBroadcast() != null)
.forEach(ia -> HostAddresses.add(ia.getAddress().getHostAddress()));
} catch (SocketException e) {
System.out.println(e.getMessage());
}
But When I change to use Try catch...
try {
Collections.list(NetworkInterface.getNetworkInterfaces())
.stream()
.filter(ni -> { //incompatible types: bad return type in lambda expression missing return value
try {
!ni.isLoopback(); //not a statement cannot find symbol symbol: method isLoopback() location: variable ni of type T where T is a type-variable: T extends Object declared in interface Stream
} catch (SocketException ex) { //exception SocketException is never thrown in body of corresponding try statement
Logger.getLogger(JPanelServerClient.class.getName()).log(Level.SEVERE, null, ex);
}
})
.filter(ni -> ni.isUp())
.filter(ni -> ni.getHardwareAddress() != null)
.flatMap(ni -> ni.getInterfaceAddresses().stream())
.filter(ia -> ia.getBroadcast() != null)
.forEach(ia -> HostAddresses.add(ia.getAddress().getHostAddress()));
} catch (SocketException e) {
System.out.println(e.getMessage());
}
According to tip @Jacob-G this solve the problem (But he has reason with "Not everything has to be functional")
try {
Collections.list(NetworkInterface.getNetworkInterfaces())
.stream()
.filter(ni -> {
try {
return !ni.isLoopback();
} catch (SocketException ex) {
System.out.println(ex.getMessage());
return false;
}
})
.filter(ni -> {
try {
return ni.isUp();
} catch (SocketException ex) {
System.out.println(ex.getMessage());
return false;
}
})
.filter(ni -> {
try {
return ni.getHardwareAddress() != null;
} catch (SocketException ex) {
System.out.println(ex.getMessage());
return false;
}
})
.flatMap(ni -> ni.getInterfaceAddresses().stream())
.filter(ia -> ia.getBroadcast() != null)
.forEach(ia -> HostAddresses.add(ia.getAddress().getHostAddress()));
} catch (SocketException e) {
System.out.println(e.getMessage());
}
How I can translate it (simpler)? How I can translate it?