Java Help
 
Forums: » Register « |  User CP |  Games |  Calendar |  Members |  FAQs |  Sitemap |  Support | 
User Name:
Password:
Remember me

The Shed is going Social! Join us on FaceBook and Twitter and chime in on the conversation.

Go Back   Dev Shed ForumsProgramming LanguagesJava Help

Reply
Add This Thread To:
  Del.icio.us   Digg   Google   Spurl   Blink   Furl   Simpy   Y! MyWeb 
Thread Tools Search this Thread Rate Thread Display Modes
 
Unread Dev Shed Forums Sponsor:
  #1  
Old October 11th, 2012, 03:53 PM
Steve T Steve T is offline
Registered User
Dev Shed Newbie (0 - 499 posts)
 
Join Date: Oct 2012
Posts: 1 Steve T User rank is Just a Lowly Private (1 - 20 Reputation Level) 
Time spent in forums: 15 m 12 sec
Reputation Power: 0
Been a while, help on code please.

Hey everyone. It has been a few years since I wrote code and I am trying to make a payroll program for my business. I came across some old GUI code I wrote a while back and having a brain fart!! This is the code I have and it works fine. My problem is now I have written my data to a .dat file but when I load the program I need it to read the information from the .dat file and load it correctly into the GUI. HELP! lol. Any assistance would be much appreciated!

if (button ==save)
{
FileWriter fstream;
try{

fstream = new FileWriter("C:\\data\\employee.dat");
}catch (Exception ex){//Catch exception if any
// Create one directory
(new File("C:\\data\\")).mkdir();
try{
fstream = new FileWriter("C:\\data\\employee.dat");
}
catch (Exception ex1){//Catch exception if any}
return;

}
}
BufferedWriter out = new BufferedWriter(fstream);
try{
out.write(""+total+"\n");
for(int i=0;i<total;i++)
{
Employee productObj = productArray[i];
if (productObj.getClass() == Overtime.class) {
out.write("Overt\n");
Overtime dcObj = (Overtime) (productObj);
out.write(""+dcObj.overtime()+"\n");
}
else
{
out.write("Old\n");
}
out.write(""+productObj.cspNumber()+"\n");
out.write(""+productObj.displayCsp()+"\n");
out.write(""+productObj.displayClient()+"\n");
out.write(""+productObj.rate()+"\n");
out.write(""+productObj.hoursWorked()+"\n");
}
out.close();
}
catch (Exception ex){//Catch exception if any

}

}

if (button == load)
{
?????????????????????



Output is as follows:

3
Old
761665
Steve Troxell
AT&T Mobility
0.0
0
Old
768277
Christina Fowler
AT&T KCA
0.0
0
Overt
0.0
697726
Debbie Troxell
Apple Chat
0.0
0

Reply With Quote
Reply

Viewing: Dev Shed ForumsProgramming LanguagesJava Help > Been a while, help on code please.

Developer Shed Advertisers and Affiliates



Thread Tools  Search this Thread 
Search this Thread:

Advanced Search
Display Modes  Rate This Thread 
Rate This Thread:


Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

vB code is On
Smilies are On
[IMG] code is On
HTML code is Off
View Your Warnings | New Posts | Latest News | Latest Threads | Shoutbox
Forum Jump

Forums: » Register « |  User CP |  Games |  Calendar |  Members |  FAQs |  Sitemap |  Support | 
  
 


Powered by: vBulletin Version 3.0.5
Copyright ©2000 - 2013, Jelsoft Enterprises Ltd.

© 2003-2013 by Developer Shed. All rights reserved. DS Cluster - Follow our Sitemap