Java program that asks a customer of a store to type in their name

In summary, the program needs to be written to take input from a text file instead of from the keyboard.
  • #1
Nothing000
403
0
Hello. I have an assignment that asks me to create a program that asks a customer of a store to type in their name, and an amount of money they spent. Then the program calculates a dicount they get according to the amount of money they spend. And print the discount to the screen.

But it says that the data should be read from a file, not from the keyboard.

I don't understand what it means about being "read from a file, not the keyboard".
 
Technology news on Phys.org
  • #2
Does this mean that I create another method that asks for the user to input the information. And then in the main method I call on that method that gathers the input info?
 
  • #3
It means that there will be a text file that you will read your data from instead of typing stuff in at the keyboard. Some simple examples of this can be found at
http://www.javacoffeebreak.com/java103/java103.html
 
  • #4
I don't get it.
 
  • #5
What exactly don't you get? Do you know what a text file is?
 
  • #6
By text file do you mean like a file of the format .txt? Like a file created with notepad?
 
  • #7
Do I just create an input file like normal?
 
Last edited:
  • #8
And then somehow call on that file from the main program when it needs the input?
 
  • #9
My assignment says that "the input should be redirected to come from a file named Discount2.dat using the UNIX command:
javac Discount2.java
java Discount2 < Discount2.dat

I don't understand what this means. Do I actually put this:

javac Discount2.java
java Discount2 < Discount2.dat

into my code to call on the input file?
 
  • #10
No. A text file is a file containing text. Anything with a .txt extension probably is a text file. Anything with a .java extension--that means your java programs--probably is a text file. Anything you typically open with Notepad (or whatever plain text editing program you use) is a text file. Text files contain unadorned text--that means just 1 font, usually of constant character width. Nothing is formatted in any way. You just have a bunch of ordinary characters, probably ASCII, that you can read with a text editor.

Edit: That changes things. You just use the usual System.in in that case. You just type that in on the command line: that is, you write your program just as if it were accepting input from the keyboard. Then at the command line you type those two lines, and if discount2.dat is a properly formatted text file, your discount2 program will run just as if you had typed the contents of discount2.dat from the keyboard.
 
Last edited:
  • #11
Ok, I get that, but how do I use that knowledge to make a program that has it's data read from a file, not from the keyboard.
 
  • #12
You write the program as if nobody had told you anything about taking input from text files. It's only when you go to run it, at the command line, that you do something different.
 
  • #13
0rthodontist said:
You write the program as if nobody had told you anything about taking input from text files. It's only when you go to run it, at the command line, that you do something different.

Could you please elaborate on that.

I really want to understand this, but I am finding it very confusing. By the way, the assistance is GREATLY appreciated.
 
  • #14
I can't be any more clear. You write your program the usual way, and run it with java Discount2 < Discount2.dat instead of only java Discount2. The < means that the contents of Discount2.dat is sent to the standard input stream of your program Discount2. Every program has a standard input and a standard output stream (and standard error). The standard input defaults to the keyboard--when you call readLine() you are reading from standard input, which is normally what you type at the keyboard. But if you make the standard input for the program to be Discount2.dat, then readLine() will read lines from Discount2.dat instead of the keyboard.
 
Last edited:
  • #15
0rthodontist said:
You write your program the usual way, and run it with java Discount2 < Discount2.dat instead of only java Discount2

I don't understand what you mean.
 
  • #16
So I would write the program like this normal?
 
Last edited:
  • #17
0rthodontist said:
You write your program the usual way, and run it with java Discount2 < Discount2.dat instead of only java Discount2. The < means that the contents of Discount2.dat is sent to the standard input stream of your program Discount2. The standard input defaults to the keyboard--when you call readLine() you are reading from standard input, which is normally what you type at the keyboard. But if you make the standard input for the program to be Discount2.dat, then readLine() will read lines from Discount2.dat instead of the keyboard.

So I would write the program as above, but leave out all of the scanner inputs?
 
  • #18
Nothing000 said:
0rthodontist said:
You write your program the usual way, and run it with java Discount2 < Discount2.dat instead of only java Discount2
I don't understand what you mean.
How can you not understand that? Do you know what the command line is?

I haven't done a careful read of your code as I about to go to sleep, but I think you have the right idea (edit: NO, do not leave out the scanner inputs). By the way, for future postings of your code you can use
Code:
 tags, like
[code]
This is code-style
{
    text
}
 
  • #19
Oh, cool. Thanks bro.
 
  • #20
It sounds like you need to do some legwork on your own. Make sure you have a good reference or just google around for anything and everything pertaining to compiling a java program, running a java program, and standard input/standard output. Below is a link to an article that talks about standard input/standard output...I found it in about 10 seconds. Google is your friend.

http://www.javaworld.com/javaworld/jw-03-2001/jw-0302-java101.html?page=1
 

1. How can I input my name into the Java program?

To input your name into the Java program, you will need to click on the text box provided and type in your name using your keyboard.

2. What if I make a mistake while typing in my name?

If you make a mistake while typing in your name, you can simply use your backspace key to delete the incorrect characters and re-type the correct ones.

3. Can I use special characters or symbols in my name?

Yes, you can use special characters and symbols in your name as long as they are supported by the Java program. However, it is recommended to use only letters and numbers to avoid any potential issues.

4. Is there a limit to how many characters I can input for my name?

The limit for the number of characters you can input for your name will depend on the specific Java program. Some programs may have a set limit, while others may allow for unlimited characters.

5. What happens to my name after I input it into the Java program?

After you input your name into the Java program, it will be stored and used for whatever purpose the program was designed for. In the case of a store customer program, your name may be used for identification or for personalized messages.

Similar threads

  • Programming and Computer Science
2
Replies
65
Views
2K
  • Programming and Computer Science
2
Replies
41
Views
3K
  • Programming and Computer Science
Replies
22
Views
921
  • Programming and Computer Science
Replies
10
Views
1K
  • Programming and Computer Science
Replies
1
Views
279
  • Programming and Computer Science
2
Replies
50
Views
4K
  • Programming and Computer Science
3
Replies
89
Views
4K
  • Programming and Computer Science
Replies
10
Views
1K
  • Programming and Computer Science
Replies
15
Views
1K
  • Programming and Computer Science
Replies
1
Views
2K
Back
Top