Hi. My name is Annie and lm from sweden. Im studying at university now where l read to webmaster. I read a short course in java now and I need help with a task we have now. My teacher is not very good at this witch is very frustrating and thats why lm here and asks for help. Hope someone can fix this with me!

Our last task was to create a program where we could enter information about kids (their namn, birth and parent). And som other properties if we waned. This is my four classes for this program. Im sorry everything is in swedish, l know thats not a very good idea but my teacher said we should do in swedish...

My class for "barn" = child in english.

public class Barn {
private String namn;
private String fodd;
private Förälder förälder;
private Förskola förskola;

public Barn(String namn, String fodd, String förälderNamn, String förälderAdress, String id, String förskolaNamn, String förskolaAdress) {
this.namn = namn;
this.fodd = fodd;
this.förälder = new Förälder(förälderNamn, förälderAdress, id);
this.förskola = new Förskola(förskolaNamn, förskolaAdress);
}

public String getFodd () {
return this.fodd;
}

public String getNamn () {
return this.namn;
}

public String getFörälderNamn(){
return this.förälder.getNamn();
}

public String getFörälderId(){
return this.förälder.getId();
}

public String getFörskolaNamn(){
return this.förskola.getNamn();
}
}



This is my class förälder = parent in english.

public class Förälder{
private String namn;
private String adress;
private String id;

public Förälder (String namn, String adress, String id) {
this.namn=namn;
this.adress=adress;
this.id=id;
}


public String getNamn () {
return this.namn;
}

public String getAdress () {
return this.adress;
}

public String getId () {
return this.id;
}
}



My class for "förskola" = preschool

public class Förskola {
private String namn;
private String adress;

public Förskola (String namn, String adress) {
this.namn = namn;
this.adress = adress;
}

public String getNamn () {
return namn;
}

public String getAdress () {
return adress;
}

}


And at last the program, mainmethod "Förskolaprog" = preschoolprogram.

import java.util.Vector;


public class FörskolaProg {
public static void main (String [] args) {
Vector <Barn> barnVektor=new Vector<Barn> ();


barnVektor.add(new Barn("Annie Gustafsson", "2005", "Johanna Gustafsson", "Sparvgatan 8", "740102", "Blåbäret", "Illerstigen 12"));

barnVektor.add(new Barn("Marcus Berg", "2008", "Mattias Berg", "Klostergatan 23", "720102", "Blåbäret", "Illerstigen 12"));

barnVektor.add(new Barn("Linnea Johansson", "2007", "Simon Johansson", "Lovisagata 29", "760102", "Blåbäret", "Illerstigen 12"));


for (int i=0; i<barnVektor.size(); i++) {
Barn b = (Barn)barnVektor.get(i);

System.out.println("Barnets namn:\t" + b.getNamn());
System.out.println("Barnets födelseår:\t" + b.getFodd());
System.out.println("Förälders namn:\t" + b.getFörälderNamn());
System.out.println("");
}
}
}


Our task now is to keep building on these classes and main method and make a form where you can enter information about the child again but this time their name, parent id, and birth. you should be able to click on a "download" button and then all children you had filled in, will be displayed in a list, taken from a textfile. Do l make myself clear ?

I have absolutely no idea how to do this. How got make a textfile and a nicelooking form where you can write in name, birth and parent id. Someone?