First of all, you'll need to decide what kind of sort algorithm you want to use, and which attribute you want to sort by. Next, you'll need to actually create some sort of data structure to hold all the data. Lastly you'll need to sort the data.
The simplest sorting algorithm worth bothering with is probably insertion sort. Wikipedia has a wonderful description about the algorithm
here (there's even a little diagram that shows how the sorting process works).
I would strongly suggest creating a class that can hold all the data you want to read in. This will make sorting a lot easier.
public class Item{
int lane ;
int number ;
String firstname ;
String surname ;
String country ;
double laptime ;
public Item(int lane, int number, String firstName, String surName, String country, double laptime)
{
this.lane = lane;
this.number = number;
this.firstname = firstName;
this.surname = surName;
this.country = country;
this.laptime = laptime;
}
public int compareTo(Item otherItem)
{
// here's where you determine the order different items are with relation to each other. NOTE: this is not where to put your sorting algorithm! It only compares the relation of two individual items
}
}
I'll leave the implementation of the sorting algorithm up to you, as well as finishing the compareTo method. As if you need further help.