获取 dd-mm-yyyy 格式的当前日期

发布于 2024-12-09 18:44:08 字数 246 浏览 0 评论 0原文

如何在 BlackBerry 中获取 DD-MM-YYYY 格式的当前日期

我已经尝试过以下操作,但它给了我 1318502493 的输出

long currentTime = System.currentTimeMillis() / 1000;

System.out.println("Current time in :" + currentTime);

how to get current date in DD-MM-YYYY format in BlackBerry

i have already tried the following, but it gives me output of 1318502493

long currentTime = System.currentTimeMillis() / 1000;

System.out.println("Current time in :" + currentTime);

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(3

Oo萌小芽oO 2024-12-16 18:44:08
private String pattern = "dd-MM-yyyy";
String dateInString =new SimpleDateFormat(pattern).format(new Date());
private String pattern = "dd-MM-yyyy";
String dateInString =new SimpleDateFormat(pattern).format(new Date());
心安伴我暖 2024-12-16 18:44:08
DateFormat formatter = new SimpleDateFormat("dd-MM-yyyy");
return formatter.format(new Date());
DateFormat formatter = new SimpleDateFormat("dd-MM-yyyy");
return formatter.format(new Date());
春风十里 2024-12-16 18:44:08

检查是否可以使用 SimpleDateFormat。如果可以,请创建此类的对象,并使用它来格式化 System.currentTimeMillis() 提供的返回值。下面的一些代码:

import java.util.*;
import java.text.*;

public class DateTest {
  public static String getCurrentTimeStamp() {
       SimpleDateFormat formDate = new SimpleDateFormat("dd-MM-yyyy");

       // String strDate = formDate.format(System.currentTimeMillis()); // option 1
       String strDate = formDate.format(new Date()); // option 2
       return strDate;
  } 
  public static void main (String args[]) {
       System.out.println(getCurrentTimeStamp());
  }
}

Check if you can use SimpleDateFormat. If you can, create an object of this class, and use it in order to format the return provided by System.currentTimeMillis(). Some code below:

import java.util.*;
import java.text.*;

public class DateTest {
  public static String getCurrentTimeStamp() {
       SimpleDateFormat formDate = new SimpleDateFormat("dd-MM-yyyy");

       // String strDate = formDate.format(System.currentTimeMillis()); // option 1
       String strDate = formDate.format(new Date()); // option 2
       return strDate;
  } 
  public static void main (String args[]) {
       System.out.println(getCurrentTimeStamp());
  }
}
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文