将整形值转换成字符串

将整形值转换成字符串,有3钟方法

  1. String.ValueOf()
    String类的valueOf()方法实现了将多种类型的值转换为字符串

  2. Integer.toString()
    Integer类的toString()方法中包含一个int类型的参数,当使用该方法时,可以直接调用该方法并传入一个int类型的参数,即可将int值转换为字符串

  3. Integer.valueOf().toString()
    使用Integer类的valueOf().toString()方法时,首先将int值转换成Integer对象,然后再调用toString()方法即可转换为字符串
    将整形值转换成字符串_第1张图片
    创建StringUtil的JavaBean类,实现将int值转换为字符串的3种方法
    public class StringUtil6 {
    private int intValue=0; //转换前的int值
    private String strValue1; //转换后的字符串1值
    private String strValue2; //转换后的字符串2值
    private String strValue3; //转换后的字符串3值
    public StringUtil6(){} //默认构造方法
    public int getIntValue() {
    return intValue;
    }
    public void setIntValue(int intValue) {
    this.intValue = intValue;
    }
    public String getStrValue1() {
    return String.valueOf(intValue);//使用String类的valueOf方法转换
    }
    public void setStrValue1(String strValue1) {
    this.strValue1 = strValue1;
    }
    public String getStrValue2() {
    return Integer.toString(intValue);//使用Integer类的toString方法转换
    }
    public void setStrValue2(String strValue2) {
    this.strValue2 = strValue2;
    }
    public String getStrValue3() {
    return Integer.valueOf(intValue).toString(); //使用Integer类的valueOf方法,然后再使用toString方法
    }
    public void setStrValue3(String strValue3) {
    this.strValue3 = strValue3;
    }

    }
    创建index.jsp页面,调用StringUtil类的3种方法返回字符串值

   <%@ page language="java" import="java.util.*" pageEncoding="UTF-8"%>
<%
	request.setCharacterEncoding("UTF-8");
%>


  
    将整型值转换为字符串
	
	
	    
	
	

	
  
  
  
  
  	 <%
  		int userAge = 35;
  	 %>
     
     
     
     
  		
使用String.valueOf()方法转换int值:š
年龄1:
使用Integer.toString()方法转换int值:š
年龄2:
使用Integer.valueOf().toString()方法转换int值:š
年龄3:

你可能感兴趣的:(JavaBean)