int count = -1;
String[] content = new String[200];
while(inFile1.hasNext()){
content[++count] = inFile1.nextLine();
}
EDIT
Looks like you want to create a float array, for that create a float array
int count = -1;
Float[] content = new Float[200];
while(inFile1.hasNext()){
content[++count] = Float.parseFloat(inFile1.nextLine());
}
then your float array would look like
content[0] = 70.3
content[1] = 70.8
content[2] = 73.8
content[3] = 77.0 and so on