Java Code Examples

To discuss Java SE, Java EE technologies.
個人資料
  • 博客訪問:
文章分類
歸檔
博文
(2008-08-25 19:38:22)
ThecodesbelowshowyouhowtoconvertStringtoDateinJava.
Thecopyrightofthecodesbelongstowww.javaeecoding.com
importjava.text.DateFormat;
importjava.text.SimpleDateFormat;
importjava.text.ParseException;
importjava.util.Date;
publicclassStringToDateConverter
{
publicstaticvoidmain(String[]args)
{
DateFormatdateFormat1=newSimpleDateFormat("yyyy-MM-dd");...[閱讀全文]
閱讀 ()評論 (0)
ThecodesbelowshowyouhowtoconvertStringtoIntegerinJava.
Thecopyrightofthecodesbelongstowww.javaeecoding.com
publicclassStringToIntConverter
{
publicstaticvoidmain(Stringargs[])
{
Stringstr="598";
intint1=Integer.parseInt(str);
System.out.println("int1="+int1);
}
}[閱讀全文]
閱讀 ()評論 (0)