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!

link|improve this question

67% accept rate
1  
Fix your accept rate. – Dennis Jan 15 at 23:02
1  
What part of it, specifically, are you having trouble understanding? – Oli Charlesworth Jan 15 at 23:03
@OliCharlesworth this part : String fullIPAddress = InetAddress.getByName("localhost").toString(); String addParts[] = fullIPAddress.split("/"); – pritthish Jan 15 at 23:07
Ok. Then please simplify the code snippet so that it only contains the line(s) that you don't understand, and reword your question accordingly. – Oli Charlesworth Jan 15 at 23:13
String fullIPAddress = InetAddress.getByName("localhost").toString(); String addParts[] = fullIPAddress.split("/"); will split the hostname and IP Address into 2 seperate stings – Green Day Jan 15 at 23:13
show 1 more comment
feedback

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
or
required, but never shown

Browse other questions tagged or ask your own question.