需要在java中以yyyy/mm/dd格式显示日期

发布于 2024-11-27 10:16:08 字数 444 浏览 4 评论 0原文

我正在使用Nebulla DateChooserCombo。我将其用作dateChooserFrom.getText();。它正在生成类似于 7/31/2011 的结果,其格式为 m/dd/yyyymm/dd/yyyy 。我需要 yyyy/mm/dd 格式的结果。为此,我将代码用作。

DateFormat df = new SimpleDateFormat("yyyy-MM-dd");  
String s = df.format(dateChooserFrom.getText()); 

但是当我运行代码时,它显示 Cannot format给定的对象为日期 。所以请任何人都可以帮助我。我正在使用 eclipse rcp 和 java。

I am using Nebulla DateChooserCombo. I have used it as dateChooserFrom.getText();. It is Producing the result like 7/31/2011 which is in m/dd/yyyy and mm/dd/yyyy format. I need the result in yyyy/mm/dd format. For that I have use the code as.

DateFormat df = new SimpleDateFormat("yyyy-MM-dd");  
String s = df.format(dateChooserFrom.getText()); 

But when I run the code it says Cannot format given Object as a Date . so please anybody could help me on this. I am using eclipse rcp and java.

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

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

发布评论

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

评论(3

哑剧 2024-12-04 10:16:08
DateFormat dffrom = new SimpleDateFormat("M/dd/yyyy");
DateFormat dfto = new SimpleDateFormat("yyyy-MM-dd");  
Date today = dffrom.parse("7/1/2011");
String s = dfto.format(today);

首先将字符串转换为日期。

DateFormat dffrom = new SimpleDateFormat("M/dd/yyyy");
DateFormat dfto = new SimpleDateFormat("yyyy-MM-dd");  
Date today = dffrom.parse("7/1/2011");
String s = dfto.format(today);

Convert the String to Date first.

悲凉≈ 2024-12-04 10:16:08

我不知道 Nebulla DateChooserCombo 是什么,但我猜问题与实例方法 getText 的返回类型有关。是约会吗?因为您必须将 java.util.Date 的实例传递给 format 方法。

I don't know what Nebulla DateChooserCombo is but I guess the problem is related to the returning type of the instance method getText. Is is a date? Because you have to pass an instance of java.util.Date to the format method.

泪冰清 2024-12-04 10:16:08

使用这个:

public class Class1 {
    public static void main(String args[]) {
      Date date = new Date();
      Calendar calendar = Calendar.getInstance();
      calendar.setTime(date);
      SimpleDateFormat SDF = new SimpleDateFormat("yyyy-MM-dd");//you can use any format that you want, for example:("yyyy/MM/dd")
      String s = SDF.format(date);
      System.out.print(s);
      }
}

Use this:

public class Class1 {
    public static void main(String args[]) {
      Date date = new Date();
      Calendar calendar = Calendar.getInstance();
      calendar.setTime(date);
      SimpleDateFormat SDF = new SimpleDateFormat("yyyy-MM-dd");//you can use any format that you want, for example:("yyyy/MM/dd")
      String s = SDF.format(date);
      System.out.print(s);
      }
}
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文