fork download
  1. /* package whatever; // don't place package name! */
  2.  
  3. /* The class name doesn't have to be Main, as long as the class is not public. */
  4. class Main
  5. {
  6. public static void main (String[] args) throws java.lang.Exception
  7. {
  8. String date = "2012-11-28 12:30:30";
  9. date = date.substring(0, 14) + "00:00";
  10. System.out.println(date);
  11. }
  12. }
Success #stdin #stdout 0.02s 245632KB
stdin
stdout
2012-11-28 12:00:00