『壹』 怎麼在jsp中轉換int類型
String chushu = request.getParameter("chushu");
String beichushu = request.getParameter("beichushu");
int he=Integer.parseInt(chushu)+Integer.parseInt(beichushu) ;
在程序中(非jsp頁面)我們一般習慣用try ...catch包起來 因為怕chushu或beichushu有null;
所以程序中
String chushu = request.getParameter("chushu");
String beichushu = request.getParameter("beichushu");
try{
int he=Integer.parseInt(chushu)+Integer.parseInt(beichushu) ;
}catch(Exception e){
System.out.println(e.getMessage());
}
『貳』 在JSP中,取到的String類型的值怎麼轉換成int類型插入資料庫
1如何將字串 String 轉換成整數 int?
A. 有兩個方法:
1). int i = Integer.parseInt([String]); 或
i = Integer.parseInt([String],[int radix]);
2). int i = Integer.valueOf(my_str).intValue();
注: 字串轉成 Double, Float, Long 的方法大同小異.
2 如何將整數 int 轉換成字串 String ?
A. 有叄種方法:
1.) String s = String.valueOf(i);
2.) String s = Integer.toString(i);
3.) String s = "" + i;
注: Double, Float, Long 轉成字串的方法大同小異.
java數據類型轉換 ynniebo [收藏]
關鍵字 類型轉換
出處
這是一個例子,說的是JAVA中數據數型的轉換.供大家學習引
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);
}
}
JAVA中常用數據類型轉換函數
雖然都能在JAVA API中找到,整理一下做個備份。
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 d)
『叄』 在JSP中將string轉換成int型,然後求乘積
字元串是不能直接轉為int,double,long等類型的,
對應的 Integer.parseInt(),Double.parseInt(),Long.parseInt()
『肆』 JSP中如何將String型轉換為int型啊
int topicId=Integer.ValueOf(request.getParameter("topicId"));
『伍』 servlet中拿到的數據在jsp中如何轉成int
servlet中拿到的數據在jsp中如何轉成int:
有兩種可能,第一種如果是數據綁定在Request對象裡面,可通過以下方式轉換成int
<%
//在servlet已經將userid數據共享,即 request.setAttribute("userid",21);
String userid= request.get.getAttribute("userid");
int id=Integer.parseInt(userid);
%>
如果通過Ajax交換,可調用parseInt("")函數方法來將獲取的字元串轉成int類型的。
『陸』 jsp中String轉int出錯
你的寫法已經是正確的了,我想你應該是錯在怎麼顯示這個hang變數而已。
你這樣,在一個input標簽裡面把這個變數這樣顯示出來:
你試試能不能顯示出來吧,如果不能或者頁面報錯了,那隻能說明你的那個name參數傳過來的值不是數字,所以在轉換的時候直接就報錯了,或者說name這個變數在你的jsp中根本就沒值!