Results 1 to 6 of 6
Thread: Simple POS System in Java
- 12-08-2009, 06:05 PM #1
Member
- Join Date
- Dec 2009
- Posts
- 3
- Rep Power
- 0
Simple POS System in Java
I am wondering if anyone has a simple POS system created using Java that I could look at. I am working on creating my own, but I need some help on where to start. If anyone has a sample POS system that I could look at that would be great!
Last edited by amsroxy1125; 12-08-2009 at 10:04 PM.
- 12-08-2009, 09:52 PM #2gcampton Guest
a POS system is?
I know the internet term for POS, but I don't think it applies here :p Although if it does, this is the perfect forum for finding them.
- 12-08-2009, 09:57 PM #3
Member
- Join Date
- Dec 2009
- Posts
- 3
- Rep Power
- 0
POS - Point of Sale, I need a simple POS display code that shows the item number, the item, and the total of the item. Like when you go shopping and the associate scans the barcode and it populates on the screen. Is that more clear??
Thanks!
- 12-08-2009, 10:05 PM #4gcampton Guest
yep, but really it depends how simple you want it. I have some old assignments you can use as a basis. You would more than likely still need to include code to scan the barcodes into the system and implement classes/methods for this. and fix a number of odd things.
- 12-08-2009, 10:07 PM #5
Member
- Join Date
- Dec 2009
- Posts
- 3
- Rep Power
- 0
Really??? That would be great if I could take a look. I am just needing a GUI that displays a box so the associate can input an item code and hit enter. Then the screen should display the item code, the name, and the amount.
- 12-08-2009, 10:23 PM #6gcampton Guest
Yea probably not going to be any help then... It's all console based, and is low level programming.
But pseudocode for this is pretty easy, just create your driver class with array and constants. perhaps have a product database, which can be simply a text file with values if your not proficient with relational databases. Allow use of user login: when program starts up, you can have boolean variable 'loggedIn' set to false, display login menu, read usernames/passwords from encrypted file and test against the input.
set to loggedIn, which displays main menu, and reads database file to array in background. Product scanning would definitely the code you want at this point. Some samples you may be able to find on the web, but may just lead to more confusion...
store each product in a mini array for each product on the docket, at POS this array would print out for docket. something like that...
allow the use of admins to add new products to database, security level can be included in userName/password file as:Java Code:name(string):password(string):securityNumber(int)
Last edited by gcampton; 12-08-2009 at 10:25 PM.
Similar Threads
-
Java plugin system
By bubbless in forum New To JavaReplies: 3Last Post: 03-26-2009, 05:14 AM -
[New to java]: HoW to set font from the available list in the system
By pndiwakar in forum AWT / SwingReplies: 4Last Post: 03-10-2009, 06:31 AM -
Accessing unix system using java
By abhishek.sinha in forum AWT / SwingReplies: 3Last Post: 06-19-2008, 08:05 AM -
Why does System.out.println do not need import java.io?
By bozovilla in forum New To JavaReplies: 2Last Post: 11-24-2007, 06:25 AM -
How to access system calls in java
By Albert in forum New To JavaReplies: 1Last Post: 07-13-2007, 03:12 PM


LinkBack URL
About LinkBacks
Reply With Quote
Bookmarks