Click here to Skip to main content
15,949,741 members
Please Sign up or sign in to vote.
0.00/5 (No votes)
See more:
In my TPlayer class

Java
private String getDate() {
		DateFormat dateFormat = new SimpleDateFormat("MM/dd/yyyy HH:mm");

        return dateFormat.format(lastLoginCal.getTime());
    }


In the event listener

Java
@EventHandler(priority = EventPriority.NORMAL)
	public void onPlayerJoin(PlayerJoinEvent e)
	{
		Player player = e.getPlayer();
                TPlayer tplayer = TEssentials.getTPlayers().getPlayer(player.getName());
                tplayer.setLastLoginCal(Calendar.getInstance());
	}


I save the last login string to a MySQL database.
The problem is. 9 out of 10 show the correct date but one of the 10 are showing next month and one out of 50 are showing 2 months ahead.

exp: Todays date 1/18/2013 in MM/dd/yyy
player bob 01/18/2013
Player joe 01/18/2013
Player susi 01/18/2013
...
Player sam 02/18/2013
Player jill 01/18/2013
...
Player matt 03/18/2013

oh I left the HH:mm out but they all show up correct just the month is wrong so far

Im not seeing why my code would return a invalid date. Any help would be nice :D
And the MySQL save just does a UPDATE and gets each TPlayer from a Map
Posted
Updated 18-Jan-13 9:42am
v2
Comments
Richard MacCutchan 19-Jan-13 5:51am    
You forgot to show the code for setLastLoginCal which is where the error (if any) is likely to be.

This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)



CodeProject, 20 Bay Street, 11th Floor Toronto, Ontario, Canada M5J 2N8 +1 (416) 849-8900