java 各種數(shù)據(jù)類型的互相轉(zhuǎn)換實(shí)例代碼
StringBuilder轉(zhuǎn)化為String
String str = "abcdefghijklmnopqrs"; StringBuilder stb = new StringBuilder(str);
整型數(shù)組轉(zhuǎn)化為字符串
StringBuilder s = new StringBuilder();
for(i=1;i<=n;i++) {
s.append(String.valueOf(a[i]));
}
String str = ""+s;
字符串轉(zhuǎn)化為整形數(shù)組
String str="123456";
int[] a = new int[str.length()];
for(int i=0;i<str.length();i++) {
a[i] = str.charAt(i)-'0';
}
字符串轉(zhuǎn)化為字符數(shù)組
String str="123456"; char[] c = str.toCharArray() ; System.out.println(c);
字符數(shù)組轉(zhuǎn)化為字符串
char[] c = {'a','s','d','4','5',};
String str = new String(c);
System.out.println(str);
字符數(shù)組轉(zhuǎn)化為整型數(shù)組
char[] c = { '1', '2', '3', '4', '5', };
int[] a = new int[c.length];
for (int i = 0; i < 5; i++) {
a[i] = c[i] - '0';
System.out.println(a[i]);
}
整型數(shù)組轉(zhuǎn)化為字符數(shù)組
int[] a = {1,2,3,4,5};
char[] c = new char[a.length];
for (int i = 0; i < 5; i++) {
c[i] = (char) (a[i]+'0');
System.out.println(c[i]);
}
整型數(shù)轉(zhuǎn)化為字符串
String str = Integer.toString(i); String s = String.valueOf(i); String s = "" + i;
字符串轉(zhuǎn)化為整型數(shù)
int i = Integer.valueOf(str).intValue();
java類型轉(zhuǎn)換 Integer String Long Float Double Date
1如何將字串 String 轉(zhuǎn)換成整數(shù) int?
A. 有兩個(gè)方法:
1). int i = Integer.parseInt([String]); 或
i = Integer.parseInt([String],[int radix]);
2). int i = Integer.valueOf(my_str).intValue();
注: 字串轉(zhuǎn)成 Double, Float, Long 的方法大同小異.
2 如何將整數(shù) int 轉(zhuǎn)換成字串 String ?
A. 有叁種方法:
1.) String s = String.valueOf(i);
2.) String s = Integer.toString(i);
3.) String s = "" + i;
注: Double, Float, Long 轉(zhuǎn)成字串的方法大同小異.
package cn.com.lwkj.erts.register;
import java.sql.Date;
public class TypeChange {
public TypeChange() {
}
//change the string type to the int type
public static int stringToInt(String intstr)
{
Integer integer;
integer = Integer.valueOf(intstr);
return integer.intValue();
}
//change int type to the string type
public static String intToString(int value)
{
Integer integer = new Integer(value);
return integer.toString();
}
//change the string type to the float type
public static float stringToFloat(String floatstr)
{
Float floatee;
floatee = Float.valueOf(floatstr);
return floatee.floatValue();
}
//change the float type to the string type
public static String floatToString(float value)
{
Float floatee = new Float(value);
return floatee.toString();
}
//change the string type to the sqlDate type
public static java.sql.Date stringToDate(String dateStr)
{
return java.sql.Date.valueOf(dateStr);
}
//change the sqlDate type to the string type
public static String dateToString(java.sql.Date datee)
{
return datee.toString();
}
public static void main(String[] args)
{
java.sql.Date day ;
day = TypeChange.stringToDate("2003-11-3");
String strday = TypeChange.dateToString(day);
System.out.println(strday);
}
} /* 我們 chabaoo.cn */
JAVA中常用數(shù)據(jù)類型轉(zhuǎn)換函數(shù)
雖然都能在JAVA API中找到,整理一下做個(gè)備份。
string->byte Byte static byte parseByte(String s) byte->string Byte static String toString(byte b) char->string Character static String to String (char c) string->Short Short static Short parseShort(String s) Short->String Short static String toString(Short s) String->Integer Integer static int parseInt(String s) Integer->String Integer static String tostring(int i) String->Long Long static long parseLong(String s) Long->String Long static String toString(Long i) String->Float Float static float parseFloat(String s) Float->String Float static String toString(float f) String->Double Double static double parseDouble(String s) Double->String Double static String toString(Double) ++++++++++++++++++++++++++++++++++++++++++++++++++++++
數(shù)據(jù)類型
基本類型有以下四種:
int長度數(shù)據(jù)類型有:byte(8bits)、short(16bits)、int(32bits)、long(64bits)、
float長度數(shù)據(jù)類型有:單精度(32bits float)、雙精度(64bits double)
boolean類型變量的取值有:ture、false
char數(shù)據(jù)類型有:unicode字符,16位
對應(yīng)的類類型:Integer、Float、Boolean、Character、Double、Short、Byte、Long
轉(zhuǎn)換原則
從低精度向高精度轉(zhuǎn)換
byte 、short、int、long、float、double、char
注:兩個(gè)char型運(yùn)算時(shí),自動(dòng)轉(zhuǎn)換為int型;當(dāng)char與別的類型運(yùn)算時(shí),也會(huì)先自動(dòng)轉(zhuǎn)換為int型的,再做其它類型的自動(dòng)轉(zhuǎn)換
基本類型向類類型轉(zhuǎn)換
正向轉(zhuǎn)換:通過類包裝器來new出一個(gè)新的類類型的變量
Integer a= new Integer(2);
反向轉(zhuǎn)換:通過類包裝器來轉(zhuǎn)換
int b=a.intValue();
類類型向字符串轉(zhuǎn)換
正向轉(zhuǎn)換:因?yàn)槊總€(gè)類都是object類的子類,而所有的object類都有一個(gè)toString()函數(shù),所以通過toString()函數(shù)來轉(zhuǎn)換即可
反向轉(zhuǎn)換:通過類包裝器new出一個(gè)新的類類型的變量
eg1: int i=Integer.valueOf(“123”).intValue()
說明:上例是將一個(gè)字符串轉(zhuǎn)化成一個(gè)Integer對象,然后再調(diào)用這個(gè)對象的intValue()方法返回其對應(yīng)的int數(shù)值。
eg2: float f=Float.valueOf(“123”).floatValue()
說明:上例是將一個(gè)字符串轉(zhuǎn)化成一個(gè)Float對象,然后再調(diào)用這個(gè)對象的floatValue()方法返回其對應(yīng)的float數(shù)值。
eg3: boolean b=Boolean.valueOf(“123”).booleanValue()
說明:上例是將一個(gè)字符串轉(zhuǎn)化成一個(gè)Boolean對象,然后再調(diào)用這個(gè)對象的booleanValue()方法返回其對應(yīng)的boolean數(shù)值。
eg4:double d=Double.valueOf(“123”).doublue()
說明:上例是將一個(gè)字符串轉(zhuǎn)化成一個(gè)Double對象,然后再調(diào)用這個(gè)對象的doublue()方法返回其對應(yīng)的double數(shù)值。
eg5: long l=Long.valueOf(“123”).longValue()
說明:上例是將一個(gè)字符串轉(zhuǎn)化成一個(gè)Long對象,然后再調(diào)用這個(gè)對象的longValue()方法返回其對應(yīng)的long數(shù)值。
eg6: char=Character.valueOf(“123”).charValue()
說明:上例是將一個(gè)字符串轉(zhuǎn)化成一個(gè)Character對象,然后再調(diào)用這個(gè)對象的charValue()方法返回其對應(yīng)的char數(shù)值。
基本類型向字符串的轉(zhuǎn)換
正向轉(zhuǎn)換:
如:int a=12;
String b;b=a+””;
反向轉(zhuǎn)換:
通過類包裝器
eg1:int i=Integer.parseInt(“123”)
說明:此方法只能適用于字符串轉(zhuǎn)化成整型變量
eg2: float f=Float.valueOf(“123”).floatValue()
說明:上例是將一個(gè)字符串轉(zhuǎn)化成一個(gè)Float對象,然后再調(diào)用這個(gè)對象的floatValue()方法返回其對應(yīng)的float數(shù)值。
eg3: boolean b=Boolean.valueOf(“123”).booleanValue()
說明:上例是將一個(gè)字符串轉(zhuǎn)化成一個(gè)Boolean對象,然后再調(diào)用這個(gè)對象的booleanValue()方法返回其對應(yīng)的boolean數(shù)值。
eg4:double d=Double.valueOf(“123”).doublue()
說明:上例是將一個(gè)字符串轉(zhuǎn)化成一個(gè)Double對象,然后再調(diào)用這個(gè)對象的doublue()方法返回其對應(yīng)的double數(shù)值。
eg5: long l=Long.valueOf(“123”).longValue()
說明:上例是將一個(gè)字符串轉(zhuǎn)化成一個(gè)Long對象,然后再調(diào)用這個(gè)對象的longValue()方法返回其對應(yīng)的long數(shù)值。
eg6: char=Character.valueOf(“123”).charValue()
說明:上例是將一個(gè)字符串轉(zhuǎn)化成一個(gè)Character對象
到此這篇關(guān)于java 各種數(shù)據(jù)類型的互相轉(zhuǎn)換實(shí)例代碼的文章就介紹到這了,更多相關(guān)java數(shù)據(jù)類型的互相轉(zhuǎn)換內(nèi)容請搜索腳本之家以前的文章或繼續(xù)瀏覽下面的相關(guān)文章希望大家以后多多支持腳本之家!
相關(guān)文章
Mybatis模糊查詢之三種定義參數(shù)方法和聚合查詢、主鍵回填實(shí)現(xiàn)方法
這篇文章主要介紹了Mybatis模糊查詢之三種定義參數(shù)方法和聚合查詢、主鍵回填實(shí)現(xiàn)方法,本文給大家介紹的非常詳細(xì),對大家的學(xué)習(xí)或工作具有一定的參考借鑒價(jià)值,需要的朋友可以參考下2023-03-03
使用Hibernate根據(jù)實(shí)體類自動(dòng)生成表的方法
這篇文章主要介紹了使用Hibernate根據(jù)實(shí)體類自動(dòng)生成表的方法,該篇提供了兩種方法,可以根據(jù)需要選擇其一,希望對你有所幫助,如有不對的地方還望指正2023-03-03
Spring中@RequestMapping、@RestController和Postman
本文介紹了Spring框架中常用的@RequestMapping和@RestController注解,文中通過示例代碼介紹的非常詳細(xì),對大家的學(xué)習(xí)或者工作具有一定的參考學(xué)習(xí)價(jià)值,需要的朋友們下面隨著小編來一起學(xué)習(xí)學(xué)習(xí)吧2024-10-10
IDEA中springboot提示java:找不到符號(hào)符號(hào):變量log問題
這篇文章主要介紹了IDEA中springboot提示java:找不到符號(hào)符號(hào):變量log問題,具有很好的參考價(jià)值,希望對大家有所幫助,如有錯(cuò)誤或未考慮完全的地方,望不吝賜教2024-04-04
Java使用Soap方式調(diào)用WebService接口代碼示例
Java調(diào)用WebService接口是指通過Java語言來訪問并與WebService進(jìn)行交互,WebService是一種基于Web的服務(wù)架構(gòu),它通過標(biāo)準(zhǔn)的XML和HTTP協(xié)議來提供服務(wù),這篇文章主要給大家介紹了關(guān)于Java使用Soap方式調(diào)用WebService接口的相關(guān)資料,需要的朋友可以參考下2024-03-03

