当前位置: 技术问答>java相关
如何在JSP中转换函数类型
来源: 互联网 发布时间:2015-02-13
本文导语: 如何将字符型变量转为数字型 如何将字符型变量转为日期型 如何将日期型变量转为字符型 | 如果想把当前日期存入数据库得表中,直接用SQL语句就可以了 INSERT INTO table_1 (column1) VALUES...
如何将字符型变量转为数字型
如何将字符型变量转为日期型
如何将日期型变量转为字符型
如何将字符型变量转为日期型
如何将日期型变量转为字符型
|
如果想把当前日期存入数据库得表中,直接用SQL语句就可以了
INSERT INTO table_1 (column1)
VALUES (GetDate())
or
UPDATE table_1
SET column1 = GetDate()
INSERT INTO table_1 (column1)
VALUES (GetDate())
or
UPDATE table_1
SET column1 = GetDate()
|
Integer.parseInt(String p);
日期型转为字符型直接调用其toString()方法即可。
Date.parse(String p);
日期型转为字符型直接调用其toString()方法即可。
Date.parse(String p);
|
to dlwr:
why not read the doc?
Date(int year, int month, int date) Deprecated. As of JDK version 1.1, replaced by
Calendar.set(year + 1900, month, date) or GregorianCalendar(year + 1900, month, date).
why not read the doc?
Date(int year, int month, int date) Deprecated. As of JDK version 1.1, replaced by
Calendar.set(year + 1900, month, date) or GregorianCalendar(year + 1900, month, date).