- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
如何设置 DateTimeFormat 以显示如下内容:“周三-周日。” “周一至周日。” “周一至周日。” “周一至周日。” “周一至周二”
DateTimeFormat dtfDate = DateTimeFormat.getFormat("dd.MM");
if (rt.detalization.equals("date")) {
dtfDate = DateTimeFormat.getFormat("dd.MM");
}
if (rt.detalization.equals("week")) {
dtfDate = DateTimeFormat.getFormat("EEE.dd-EEE.dd");
//how can show week from choisen day to sunday like I wrote before
}
if (rt.detalization.equals("month")) {
dtfDate = DateTimeFormat.getFormat("MMM");
}
最佳答案
下面的代码打印
DateTimeFormat format2 = DateTimeFormat.getFormat("E");
String format = format2.format(new Date());
System.out.println(format); //prints "Mon"
所以
if (rt.detalization.equals("week")) {
DateTimeFormat format2 = DateTimeFormat.getFormat("E");
String day= format2.format(dtfDate);
System.out.println(day+"-Sun");
}
关于java - getformat 用于显示周,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/15742490/
如何设置 DateTimeFormat 以显示如下内容:“周三-周日。” “周一至周日。” “周一至周日。” “周一至周日。” “周一至周二” DateTimeFormat dtfDate = Dat
我有一个 IFormatProvider 记录它传递的类型: internal class LoggingFormatProvider : IFormatProvider { public o
本文整理了Java中at.huber.youtubeExtractor.YtFile.getFormat()方法的一些代码示例,展示了YtFile.getFormat()的具体用法。这些代码示例主要来
我使用 Java Smartsheet API。 根据Smartsheet文档 "Formatting data can optionally be included for columns, row
本文整理了Java中com.android.dx.io.instructions.ZeroRegisterDecodedInstruction.getFormat()方法的一些代码示例,展示了Zero
这个问题已经有答案了: non static method cannot be referenced from static context [duplicate] (6 个回答) 已关闭 2 年前。
本文整理了Java中pl.edu.icm.model.bwmeta.y.YContentFile.getFormat()方法的一些代码示例,展示了YContentFile.getFormat()的具体
本文整理了Java中org.pentaho.di.trans.steps.yamlinput.YamlInputField.getFormat()方法的一些代码示例,展示了YamlInputField
需要一些帮助!!! 我的应用程序在 Android 5.0 Lollipop 上崩溃,但出现以下异常。它适用于以前的版本。 java.lang.NullPointerException: Attemp
我是一名优秀的程序员,十分优秀!