I'm trying to make a int value, which goes up by a counter every second, then when you close the program down, it will the save the value to a .txt file, and then, it SHOULD, when you start up the program again, read the int value from the file, and continue from that value again, however, it is saving correctly, it makes the file, but when I startup my program again, it will just start at 1 again, and not at the value which was saved in the .txt file.

The int value:

    public int points;

The getter and setter, located in MrStan.class

    public int getPoints(){
    return points;
}

public void setPoints( int points ){
    this.points = points;
}

How i'm reading the file:

        MrStanReadFile r = new MrStanReadFile();
    r.openFile();
    r.readFile();
    r.closeFile();

My ReadFile class:

public class MrStanReadFile {

private Scanner x;
MrStan a = new MrStan();

public void openFile(){
    try{
        x = new Scanner(new File("D:/MrStan/text.txt"));
    }catch(Exception ex){
        System.out.println("COULD NOT FIND TEXT.TXT");
    }
}

public void readFile(){
    while(x.hasNext()){
        String p = x.next();
        int pointset = Integer.parseInt(p);
        a.setPoints(pointset);
    }
}

public void closeFile(){
    x.close();
}

}

Other places where the int is used:

Todotask:

    public MrStan(){
    timer.schedule(new todoTask(), 0, 1 * 1000);
}

class todoTask extends TimerTask{
    public void run(){  
        points++;
        repaint();
    }
}

private Timer timer = new Timer();

and

        g.drawString("Points: " + points, 75, 83);

Okay, at the readFile method, you will see a string, p, that's the string in the text file. I convert the string to an int, using Integer.parseInt(), then, I set my int value to the converted pointset value, but it isn't changing, how will my program work so it will start up from the number set in the .txt file?

link|improve this question

It should be great if you also post the code of MrStan.setPoints and the code that is using that integer. There must be some error setting the value or using it... – helios Apr 28 '11 at 21:24
"but it isn't changing". What isn't changing? The value in pointset? Can you narrow down your problem? – Shredder Apr 28 '11 at 21:26
The int where the program starts with, it should start at the int value in the file – Stan Apr 28 '11 at 21:30
The problem is not in the code you have posted. – Skip Head Apr 28 '11 at 21:59
feedback

1 Answer

up vote 0 down vote accepted
  1. Did you check for an output "COULD NOT FIND TEXT.TXT"?
  2. add System.out.println("Read: "+ pointset); right after int pointset = Integer.parseInt(p);
  3. Make sure you don't have this.points = 0; anywhere else.
  4. You are defining MrStan a = new MrStan(); inside MrStanReadFile. Are you sure it's the same object as the one you use in class todoTask?
link|improve this answer
1. No outputs. 2. It red the file, and printed what was in the file. 3. I don't, 4. I'm not sure, but I need to use methods from MrStan.class. getPoints seem to work, but setPoints not. – Stan Apr 29 '11 at 6:03
@Stan post the complete todoTask class – Aleadam Apr 29 '11 at 6:28
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.