Java: Fix Error & Read File Args to Variables

  • Context: Java 
  • Thread starter Thread starter Sam032789
  • Start date Start date
  • Tags Tags
    Java
Click For Summary
SUMMARY

The discussion focuses on reading a file line by line in Java and assigning its contents to variables. The user provided code attempts to read from a file named "exams.dat" but encounters an error due to an incorrect comparison in the line "if (strLine == expectedArg)". The recommended solution is to use the String method split() to tokenize the line into an array of strings, which can then be parsed into the respective variables. Additionally, it is advised to use FileReader instead of FileInputStream for text files, simplifying the code structure.

PREREQUISITES
  • Java programming fundamentals
  • Understanding of file I/O in Java
  • String manipulation techniques in Java
  • Regular expressions for string tokenization
NEXT STEPS
  • Learn how to use String.split(String regex) for tokenizing strings in Java
  • Explore the differences between FileReader and FileInputStream for file handling
  • Study Java exception handling to manage runtime errors effectively
  • Investigate how to validate input data and ensure correct parsing
USEFUL FOR

Java beginners, software developers working with file I/O, and anyone looking to improve their string manipulation skills in Java.

Sam032789
Messages
11
Reaction score
0
Hello, I am just starting to learn Java. I have a small file that needs reading in, line by line, with different arguments. Such a line looks like this:

Code:
123 Midterm .25 100
456 TakehomeExam .25 200
0 Quiz03 .10 25
1 Final .40 100

I need to read these in as separate variables. I already have part of my code:

Code:
import java.io.*;

public class Program {
	public static void main(String args[]) {
		double id = 0.0;
		String label = "";
		double weight = 0.0;
		double graduate = 0.0;
		double undergrad = 0.0;
		int expectedArg = 5;
		
		try {
			// Open the file that is the first 
			// command line parameter
			FileInputStream fstream = new FileInputStream("exams.dat");
			// Get the object of DataInputStream
			DataInputStream in = new DataInputStream(fstream);
			BufferedReader br = new BufferedReader(new InputStreamReader(in));
			String strLine;
			//Read File Line By Line
			while ((strLine = br.readLine()) != null)   {
			// Print the content on the console
				//System.out.println (strLine);
				//Try to put the args into the variables.
				if (strLine == expectedArg) {
				try {
					id = Double.parseDouble(args[0]);
					label = args[1];
					weight = Double.parseDouble(args[2]);
					graduate = Double.parseDouble(args[3]);
					undergrad = Double.parseDouble(args[4]);
				} catch (Exception e) {
					System.out.println("Error: ");
					e.printStackTrace();
					System.exit(1);
				} 
				}
			}
			//Close the input stream
			in.close();
	    }catch (Exception e){//Catch exception if any
	    	System.err.println("Error: " + e.getMessage());
	    }
	}
}

The "if (strLine == expectedArg)" part returns an error. I know it should be strLine.something but I'm not sure what. Any suggestions? Also, will this work in assigning the file arguments to variables?
 
Technology news on Phys.org
A couple of things to point out.

Consider using FileReader instead of FileInputStream. FileReader is designed to work with text-based files. Also, you wrap the FileInputStream with a DataInputStream followed by a BufferedReader. Is there any particular reason why you are doing this? I don't think it is really necessary. No big deal, just more work than you really need to do.

So you get your strLine from the BufferedReader via getLine. That contains your data, say:

Code:
123 Midterm .25 100

Now I'm assuming you want to parse the line and place the values in your id, label, weight, etc variables, right? The next thing you need to do is tokenize the String contained in strLine. This will turn it into an array of Strings. There's a convenience method on the String class called split. Check it out, it will tokenize the string for you.

http://download.oracle.com/javase/6/docs/api/java/lang/String.html#split(java.lang.String)

So basically you'd do something like:

Code:
String parts[] = strLine.split(regex);

Here's a hint. The regex will be the character that divides up the fields of the string.

Regarding your question about the if conditional, you are wanting to check to make sure you have the right number of columns, right? Tokenizing the string will help you accomplish that. Hint: the length of an array such as 'parts' can be had by accessing the 'length' property (e.g. parts.length).

Hope that helps. There are some other parts that need to be fixed, but hopefully this will get you on the right track.
 

Similar threads

  • · Replies 8 ·
Replies
8
Views
2K
  • · Replies 3 ·
Replies
3
Views
3K
  • · Replies 3 ·
Replies
3
Views
3K
  • · Replies 2 ·
Replies
2
Views
2K
  • · Replies 4 ·
Replies
4
Views
4K
  • · Replies 3 ·
Replies
3
Views
1K
Replies
1
Views
2K
  • · Replies 1 ·
Replies
1
Views
2K
  • · Replies 3 ·
Replies
3
Views
3K
Replies
3
Views
3K