I Have been trying for some time now to get java to get and number and add a neww number to it but have had no luck.
package me.FL.PlayTime;
import java.io.BufferedWriter;
import java.io.File;
import java.io.FileWriter;
import java.io.IOException;
import java.util.Scanner;
import org.bukkit.entity.Player;
public class PlayTimePlayer {
long join = 0;
Player player = null;
private File f;
public PlayTimePlayer(Player player){
this.player = player;
this.join = System.currentTimeMillis();
}
public void hold(){
int seconds = (int) ((getMiliPlayTime() / (1000)) % 60);
int minutes = (int) ((getMiliPlayTime() / (1000*60)) % 60);
int hours = (int) ((getMiliPlayTime() / (1000*60*60)) % 24);
int days = (int) ((getMiliPlayTime() / (1000*60*60*24)) % 24);
}
public int getMiliPlayTime(){
return (int) (System.currentTimeMillis() - join);
}
public int getSeconds(){
return(int) (getMiliPlayTime() / 1000) % 60 ;
}
public int getMinutes(){
return (int) ((getMiliPlayTime() / (1000*60)) % 60);
}
public int getHours(){
return (int) ((getMiliPlayTime() / (1000*60*60)) % 24);
}
public int getDays(){
return (int) ((getMiliPlayTime() / (1000*60*60*24)) % 24);
}
public String getTime(){
String ptime = getDays() + ":" + getHours() + ":" + getMinutes() + ":" + getSeconds();
System.out.println(ptime);
return ptime;
}
public void save() throws IOException{
if (Playtime.hascreatedfolder = false){
Scanner s = new Scanner(new File("Fileloc"));
while(s.hasNextLine()){
String time = s.nextLine();
String[] split = time.split(":");
int days = Integer.parseInt(split[0]);
int newday = getDays();
int newTimeday = newday + days;
int hours = Integer.parseInt(split[1]);
int newhour = getHours();
int newTimeHour = newhour + hours;
int minutes = Integer.parseInt(split[2]);
int newminute = getMinutes();
int newTimeminute = newminute + minutes;
int seconds = Integer.parseInt(split[3]);
int newsecond = getSeconds();
int newTimesecond = newsecond + seconds;
File f = new File("plugins/PlayerTime/");
f.mkdirs();
File file = new File(player.getDisplayName() + ".txt");
if (f.exists());
f.createNewFile();
try {
BufferedWriter w = new BufferedWriter(new FileWriter(file));
w.write(getTime());
w.close();
} catch (IOException e) {
e.printStackTrace();
}
}
}
}
}
i want it to get a time for example lets say it had 1:0:0 and i wanted to add 30 minutes i will like it to get 1:0:0 from a txt file and add 30 minutes from the server i should get 1:30:0 but i get 0:30:0 instead also it overwrited the oldnumbers txt file i dont want it to do this. please let me know how to fix this.
System.out.println(...)statements? – Hovercraft Full Of Eels Jan 23 at 1:30