So we are doing a group project at university. The coursework is to create a simple distributed simulator of a router program.
My team member sent me this code for documentation, but I'm not really good with java. I was hoping someone here could explain what this bit of code does?
//create arraylist
List<String> fileData;
int incomingPort;
List<Link> links = new ArrayList<Link>();
String address = "";
try{
fileData = readFile(args[0]);
incomingPort = getPort(fileData.get(0));
for(int i=1; i<fileData.size(); i++){
//split each line at ":"
String parts[] = fileData.get(i).split(":");
String fullIPAddress = InetAddress.getByName("localhost").toString();
String addParts[] = fullIPAddress.split("/");
if(parts.length<3){
links.add(new Link(parts[0],"localhost:"+fileData.get(0)));
address = "localhost";
}
else if(parts.length==3){
links.add(new Link(parts[0],parts[1]+":"+parts[2]));
address = parts[1];
}
}
Thanks a lot!