fork download
  1. /* package whatever; // don't place package name! */
  2.  
  3. import java.time.*;
  4. import java.time.format.*;
  5.  
  6. /* Name of the class has to be "Main" only if the class is public. */
  7. class Ideone {
  8.  
  9. public static void main (String[] args) {
  10. String str = "1/1/2010 3:23:12 PM +00:00";
  11.  
  12. DateTimeFormatter formatter = DateTimeFormatter.ofPattern("d/M/yyyy h:mm:ss a XXX");
  13. OffsetDateTime time = OffsetDateTime.parse(str, formatter);
  14. System.out.println(time);
  15. }
  16. }
Success #stdin #stdout 0.17s 2184192KB
stdin
Standard input is empty
stdout
2010-01-01T15:23:12Z