解释一下这两句JAVA语句,详细点,谢谢!!!
答案:2 悬赏:50 手机版
解决时间 2021-02-23 16:27
- 提问者网友:椧運幽默
- 2021-02-23 00:46
解释一下这两句JAVA语句,详细点,谢谢!!!
最佳答案
- 五星知识达人网友:三千妖杀
- 2021-02-23 02:24
import java.text.DateFormat;
import java.text.ParseException;
public class TestBaiduKnow {
public static void main(String[] args) {
int year = 2015, month = 10;
DateFormat dateFormat = DateFormat.getDateInstance();
// Gets the date formatter with the default formatting style for the
// default locale.
// 取当前环境下的默认的日期类型格式
// Returns:
// a date formatter
try {
System.out.print(dateFormat.parse(year + "-" + month + "-" + 1));
// Parses text from the beginning of the given string to produce a
// date. 根据提供的字符串生成一个日期
} catch (ParseException e) {
e.printStackTrace();
}
}
}
import java.text.ParseException;
public class TestBaiduKnow {
public static void main(String[] args) {
int year = 2015, month = 10;
DateFormat dateFormat = DateFormat.getDateInstance();
// Gets the date formatter with the default formatting style for the
// default locale.
// 取当前环境下的默认的日期类型格式
// Returns:
// a date formatter
try {
System.out.print(dateFormat.parse(year + "-" + month + "-" + 1));
// Parses text from the beginning of the given string to produce a
// date. 根据提供的字符串生成一个日期
} catch (ParseException e) {
e.printStackTrace();
}
}
}
全部回答
- 1楼网友:十年萤火照君眠
- 2021-02-23 03:49
DateFormat dateFormat = DateFormat.getDateInstance(); // 得到当前的DateFormat的Instance对象.
dateFormat.parse(year + "-" + month + "-" + 1); // 转换当前Date格式成 year-month-1的格式?
dateFormat.parse(year + "-" + month + "-" + 1); // 转换当前Date格式成 year-month-1的格式?
我要举报
如以上问答信息为低俗、色情、不良、暴力、侵权、涉及违法等信息,可以点下面链接进行举报!
大家都在看
推荐资讯