jsp中日期(時間)型與String,int的相互轉換(網上收集)__js

來源:互聯網
上載者:User

(1)將數字轉換成字串        

int i = 7;
double d = 13.56;
String str1,str2;
str1 = Integer.toString(i);
str2 = Double.toString(d);
執行以後,str1存的字串是"7",str2存的字串是"13.56".
(2)將字串轉換成數值

String str1 = "3532";
String str2 = "187.863";
Integer m;
Double n;
m = Integer.valueOf(str1);    //將String類型轉換成Integer類型
n = Integer.valueOf(str2);     //將String類型轉換成Double 類型
int i = m.intValue();               //將Integer類型轉換成int類型
double d = n.doubleValue();
執行以後,整型變數i為3532,浮點型變數為187.863

(3)從字串轉換成數值的第2種辦法

String str1 = "3532";
String str2 = "187.863";

int i = Integer.praseInt(str1);
double d = Double.praseDouble(str2);

執行以後,整型變數i為3532 ,浮點型變數d為187.863

(4)日期類型轉換

//把字串轉化成日期類型
import java.sql.Date;
       Date date = new Date(0);
       date.valueOf("1983-09-09");
//把日期類型轉換成字串類型
import java.sql.Date;
        Date date = new Date(0);
       date.valueOf("1983-09-09").toString(); 

 (5)int轉成Integer

int i =0;
Integer temp = new Integer( i );

相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.