Tagged Questions
9
votes
1answer
265 views
How to strictly parse a date with only a year and a week number when the first day of this week is in the previous year?
My goal is to have a strict parsing (and forbid dates like '98/99' for example). However, the following code raises a java.text.ParseException with the message Unparseable date: "98/01":
...
3
votes
5answers
2k views
Why does a new SimpleDateFormat object contain calendar with the wrong year?
I came upon a strange behavior that has left me curious and without a satisfactory explanation as yet.
For simplicity, I've reduced the symptoms I've noticed to the following code:
import ...
2
votes
5answers
7k views
How to get year, month, day, hours, minutes, seconds and milliseconds of the current moment in Java?
I would like to have them as strings.
1
vote
3answers
188 views
Warning - Accessing Static Field Year
I import the Calendar class to gain access to the current year.
I do this as follows:
import java.util.Calendar;
Calendar c = c.getInstance();
int year = c.get(c.YEAR);
The code compiles and runs ...
0
votes
3answers
99 views
calculate number of weeks in a given year
I would like to get how many weeks does a current year have. Though 52 is accepted as a worldwide answer, if u see calendars for Dec 2015, 2020 & 2026, there are 53 weeks. (At least my Ubuntu ...
0
votes
2answers
451 views
How to get the right week of year number through a Calendar?
guys,i am confused by invoking the following method:Calendar.getInstance().get(Calendar.WEEK_OF_YEAR),the result got from that method is not right.Here is my Code:
...
0
votes
3answers
114 views
Java - Before a certain month of every year
How could I code a method that will allow a number to be added to another number before a certain month of each year?
Thanks,
Chris.
-2
votes
3answers
159 views
Help Please!! java
I did the ode but it's not working the way I want it too. For example if I change
int y = 2000, m = 5, d = 06; to int y = 2889, m = 44, d = 16; it prints it instead of what is in the if statement ...