Re: SimpleDateFormat
- - <[email protected]>
| Newsgroups | gmane.comp.gcc.java.devel |
|---|---|
| Message-ID | <[email protected]> |
Hi, in attach is my complete source test case. The output with gcj "3.4.5 (mingw-vista special r3)" is: $ snippetCalendar.exe Test for SimpleDateFormat datai:29-Dec-99 11:00:09 PM That is ok. The output with "4.3.0 20080305 (alpha-testing) mingw-20080502" is: $ snippetCalendar.exe Test for SimpleDateFormat Exception in thread "main" java.lang.ExceptionInInitializerError at java.lang.Class.initializeClass(fake:0) at java.util.Currency.getInstance(fake:0) at java.text.DecimalFormatSymbols.<init>(fake:0) at java.text.DecimalFormatSymbols.getInstance(fake:0) at java.text.NumberFormat.computeInstance(fake:0) at java.text.NumberFormat.getNumberInstance(fake:0) at java.text.SimpleDateFormat.<init>(fake:0) at snippetCalendar.main(fake:0) Caused by: java.lang.NullPointerException at java.io.InputStreamReader.read(fake:0) at java.io.BufferedReader.fill(fake:0) at java.io.BufferedReader.readLine(fake:0) at java.util.Properties.load(fake:0) at java.util.Currency.<clinit>(fake:0) at java.lang.Class.initializeClass(fake:0) ...7 more Thanks for any help. x10 --- On Thu, 6/19/08, Andrew Haley <> wrote: > From: Andrew Haley <> > Subject: Re: SimpleDateFormat > Date: Thursday, June 19, 2008, 11:55 AM > - - wrote: > > > How we can understand if it is a gcj problem or a > mingw problem? > > You need to provide a full test case. > > Andrew.
snippetCalendar.java
(text/x-java, 567 B)
// how to compile and run...
// gcj --main=snippetCalendar -o snippetCalendar.exe snippetCalendar.java
// snippetCalendar.exe
import java.util.Calendar;
import java.text.SimpleDateFormat;
public class snippetCalendar {
public static void main (String args[]) {
System.out.println("Test for SimpleDateFormat");
Calendar datai;
datai = Calendar.getInstance();
datai.set(1899, 11, 30, 0, 0); // start time for delphi
SimpleDateFormat sdf = new SimpleDateFormat();
System.out.println("datai:"+ sdf.format(datai.getTime()));
}
}