将两个字符串与Java中的Date进行比较

时间:2017-02-27 15:31:42

标签: java date

我有一个约会,我必须检查是星期六还是星期天。我正在以正确的方式前进吗?

Calendar gcal = new GregorianCalendar();
DateFormat dateFormat = new SimpleDateFormat("EEEE");
        Date currentDate = gcal.getTime();
        String strDate = dateFormat.format(currentDate);
        if (!"Saturday".equals(strDate)) {
}

工作正常。但我不能比较两个字符串,

if (!"Saturday" || "Sunday".equals(strDate)) {}

如果约会是星期六或星期日我必须跳过循环.... 提前谢谢......

4 个答案:

答案 0 :(得分:7)

无需创建/格式化Date对象,请使用Calendar方法:

Calendar gcal = new GregorianCalendar();

if (gcal.get(Calendar.DAY_OF_WEEK) != Calendar.SATURDAY && gcal.get(Calendar.DAY_OF_WEEK) != Calendar.SUNDAY) {

}

答案 1 :(得分:3)

  

如果日期是星期六或星期日,我必须跳过循环。

那应该是

[string[]]$servers = 'Server1,Server2,Server3' -split ','

$credential = Get-Credential 

Invoke-Command -ComputerName $servers -Credential $credential -ScriptBlock {

Get-ItemProperty 'HKLM:\Software\Microsoft\Windows\CurrentVersion\Uninstall\*' | Select-Object DisplayName, DisplayVersion, Publisher, InstallDate 

} | Format-Table PSComputerName, DisplayName, DisplayVersion, Publisher, InstallDate | Format-Table –AutoSize | Out-File C:\Temp\SoftwareListByServer.txt

答案 2 :(得分:1)

TL;博士

今天是星期六吗?

LocalDate.now( ZoneId.of( "America/Montreal" ) )
         .getDayOfWeek()
         .equals( DayOfWeek.SATURDAY )

详细

  

我正在以正确的方式前进吗?

没有。您正在使用已被java.time类取代的麻烦的旧日期时间类。

另一个问题是隐含地依赖于默认时区。最好明确指定您的预期时区。时区决定了日期,而日期决定了星期几,所以时区至关重要。

另一个问题是你不必要地从Calendar转换为Date。但最好完全避免这些课程。

DayOfWeek

DayOfWeek enum定义了七个对象,每周一天。

您应该在代码周围传递这些对象而不是字符串。请注意,在下面的代码中我们根本不使用字符串。

请注意,这些DayOfWeek对象不是字符串。它们是真实的物体,提供了几种方法。这些方法包括toString,它以英文生成硬编码的字符串,全部为大写。方法getDisplayName生成以各种人类语言自动本地化的星期几的名称。

Java中的枚举功能比其他语言中常见的功能强大且实用。见Oracle Tutorial

LocalDate

LocalDate类表示没有时间且没有时区的仅限日期的值。

时区对于确定日期至关重要。对于任何给定的时刻,日期在全球范围内因地区而异。例如,在Paris France午夜后的几分钟是新的一天,而Montréal Québec中仍然是“昨天”。

continent/region的格式指定proper time zone name,例如America/MontrealAfrica/CasablancaPacific/Auckland。切勿使用诸如ESTIST之类的3-4字母缩写,因为它们不是真正的时区,不是标准化的,甚至不是唯一的(!)。

ZoneId z = ZoneId.of( "America/Montreal" );
LocalDate today = LocalDate.now( z );
  

today.toString():2017-02-27

询问LocalDate对象DayOfWeek

DayOfWeek dow = today.getDayOfWeek();
  

dow.toString():星期一

与您的目标星期日比较。

Boolean isTodaySaturday = dow.equals( DayOfWeek.SATURDAY );
  

isTodaySaturday.toString():false

试试这个code live at IdeOne.com

见类似问题:How to skip weekends while adding days to LocalDate in Java 8?

关于java.time

java.time框架内置于Java 8及更高版本中。这些类取代了麻烦的旧legacy日期时间类,例如java.util.DateCalendar和& SimpleDateFormat

现在位于Joda-Timemaintenance mode项目建议迁移到java.time类。

要了解详情,请参阅Oracle Tutorial。并搜索Stack Overflow以获取许多示例和解释。规范是JSR 310

从哪里获取java.time类?

ThreeTen-Extra项目使用其他类扩展java.time。该项目是未来可能添加到java.time的试验场。您可以在此处找到一些有用的课程,例如IntervalYearWeekYearQuartermore

答案 3 :(得分:0)

可替换地:

if (!strDate.matches("Saturday|Sunday")) {
}

但速度较慢。