Java中String类型转引用类型

entity层Users.java
package net.ptcs.my12306.entity;

import java.util.Date;

/**
 * 用户实体类
 * @author hp
 */
public class Users {

    private Integer id;
    private String username;
    private String password;
    private String rule;// 1、管理员 2、普通用户
    private String realname;
    private Character sex;//性别(1、男 2、女)
    private City city;
    private CertType certtype;//证件类型1、二代身份证 2、港澳通行证 3、台湾通行证 4、护照
    private String cert;//证件号码
    private Date birthday;
    private UserType usertype;
    private String content;
    private Character status;//用户状态(0、无效  1、有效 )
    private String loginIp;
    private String imagePath;
    
    
    public Integer getId() {
        return id;
    }
    public void setId(Integer id) {
        this.id = id;
    }
    public String getUsername() {
        return username;
    }
    public void setUsername(String username) {
        this.username = username;
    }
    public String getPassword() {
        return password;
    }
    public void setPassword(String password) {
        this.password = password;
    }
    public String getRule() {
        return rule;
    }
    public void setRule(String rule) {
        this.rule = rule;
    }
    public String getRealname() {
        return realname;
    }
    public void setRealname(String realname) {
        this.realname = realname;
    }
    public Character getSex() {
        return sex;
    }
    public void setSex(Character sex) {
        this.sex = sex;
    }
    public City getCity() {
        return city;
    }
    public void setCity(City city) {
        this.city = city;
    }
    public CertType getCerttype() {
        return certtype;
    }
    public void setCerttype(CertType certtype) {
        this.certtype = certtype;
    }
    public String getCert() {
        return cert;
    }
    public void setCert(String cert) {
        this.cert = cert;
    }
    public Date getBirthday() {
        return birthday;
    }
    public void setBirthday(Date birthday) {
        this.birthday = birthday;
    }
    public UserType getUsertype() {
        return usertype;
    }
    public void setUsertype(UserType usertype) {
        this.usertype = usertype;
    }
    public String getContent() {
        return content;
    }
    public void setContent(String content) {
        this.content = content;
    }
    public Character getStatus() {
        return status;
    }
    public void setStatus(Character status) {
        this.status = status;
    }
    public String getLoginIp() {
        return loginIp;
    }
    public void setLoginIp(String loginIp) {
        this.loginIp = loginIp;
    }
    public String getImagePath() {
        return imagePath;
    }
    public void setImagePath(String imagePath) {
        this.imagePath = imagePath;
    }
    public Users() {
        super();
    }
    public Users(Integer id, String username, String password, String rule,
            String realname, Character sex, City city, CertType certtype,
            String cert, Date birthday, UserType usertype, String content,
            Character status, String loginIp, String imagePath) {
        super();
        this.id = id;
        this.username = username;
        this.password = password;
        this.rule = rule;
        this.realname = realname;
        this.sex = sex;
        this.city = city;
        this.certtype = certtype;
        this.cert = cert;
        this.birthday = birthday;
        this.usertype = usertype;
        this.content = content;
        this.status = status;
        this.loginIp = loginIp;
        this.imagePath = imagePath;
    }
    @Override
    public String toString() {
        return "Users [id=" + id + ", username=" + username + ", password="
                + password + ", rule=" + rule + ", realname=" + realname
                + ", sex=" + sex + ", city=" + city + ", certtype=" + certtype
                + ", cert=" + cert + ", birthday=" + birthday + ", usertype="
                + usertype + ", content=" + content + ", status=" + status
                + ", loginIp=" + loginIp + ", imagePath=" + imagePath + "]\n";
    }
    public Users(String username, String password, Character sex, Date birthday) {
        super();
        this.username = username;
        this.password = password;
        this.sex = sex;
        this.birthday = birthday;
    }
}
controller层 UserServlet.java
request.setCharacterEncoding("utf-8");
response.setCharacterEncoding("utf-8");

//1.获取数据
String username=request.getParameter("username");//用户名
String password=request.getParameter("password");//密码
String confirm_password=request.getParameter("confirm_password");//确认密码
String real_name = request.getParameter("real_name");//真实姓名
String sex=request.getParameter("sex");//性别
String province = request.getParameter("province");//省份
String city = request.getParameter("city");//城市
String cert_type = request.getParameter("cert_type");//证件类型
String cert = request.getParameter("cert");//证件号码
String birthday_date=request.getParameter("birthday");//出生日期
String user_type = request.getParameter("user_type");//旅客类型
String content = request.getParameter("content");//备注
String agree = request.getParameter("agree");//是否同意on/null 被选中/非选
得到咯值之后需要设置值而需要转换类型
Users user = new Users();
user.setUsername(username);//用户名
user.setPassword(Md5Utils.md5(password));//密码
user.setRule("2");//用户类型 2为普通用户
user.setRealname(real_name);//真实姓名
user.setSex(sex.charAt(0));//性别 String 转 Character

City c = new City();
c.setCityId(city);
user.setCity(c);//获取城市 String 转 引用类型

user.setCerttype(new CertType(Integer.parseInt(cert_type), null));//证件类型 String 转 引用类型

user.setCert(cert);//证件号码

try {
    user.setBirthday(new SimpleDateFormat("yyyy-MM-dd").parse(birthday_date));
} catch (ParseException e) {
    e.printStackTrace();
}//出身日期 String 转 date

user.setUsertype(new UserType(Integer.parseInt(user_type), null));//旅客类型 String 转 引用类型

user.setContent(content);//备注
user.setLoginIp(request.getRemoteAddr());//设置IP

结论

String 转 引用类型的两种方法:

第一种:

City c = new City();
c.setCityId(city);
user.setCity(c);//获取城市 String 转 引用类型

第二种:

user.setCerttype(new CertType(Integer.parseInt(cert_type), null));//证件类型 String 转 引用类型
拓展知识点

String转日期类型

try {
    user.setBirthday(new SimpleDateFormat("yyyy-MM-dd").parse(birthday_date));
} catch (ParseException e) {
    e.printStackTrace();
}//出身日期 String 转 date

分割线


博主为咯学编程:父母不同意学编程,现已断绝关系;恋人不同意学编程,现已分手;亲戚不同意学编程,现已断绝来往;老板不同意学编程,现已失业三十年。。。。。。如果此博文有帮到你欢迎打赏,金额不限。。。

最后编辑于
©著作权归作者所有,转载或内容合作请联系作者
  • 序言:七十年代末,一起剥皮案震惊了整个滨河市,随后出现的几起案子,更是在滨河造成了极大的恐慌,老刑警刘岩,带你破解...
    沈念sama阅读 216,001评论 6 498
  • 序言:滨河连续发生了三起死亡事件,死亡现场离奇诡异,居然都是意外死亡,警方通过查阅死者的电脑和手机,发现死者居然都...
    沈念sama阅读 92,210评论 3 392
  • 文/潘晓璐 我一进店门,熙熙楼的掌柜王于贵愁眉苦脸地迎上来,“玉大人,你说我怎么就摊上这事。” “怎么了?”我有些...
    开封第一讲书人阅读 161,874评论 0 351
  • 文/不坏的土叔 我叫张陵,是天一观的道长。 经常有香客问我,道长,这世上最难降的妖魔是什么? 我笑而不...
    开封第一讲书人阅读 58,001评论 1 291
  • 正文 为了忘掉前任,我火速办了婚礼,结果婚礼上,老公的妹妹穿的比我还像新娘。我一直安慰自己,他们只是感情好,可当我...
    茶点故事阅读 67,022评论 6 388
  • 文/花漫 我一把揭开白布。 她就那样静静地躺着,像睡着了一般。 火红的嫁衣衬着肌肤如雪。 梳的纹丝不乱的头发上,一...
    开封第一讲书人阅读 51,005评论 1 295
  • 那天,我揣着相机与录音,去河边找鬼。 笑死,一个胖子当着我的面吹牛,可吹牛的内容都是我干的。 我是一名探鬼主播,决...
    沈念sama阅读 39,929评论 3 416
  • 文/苍兰香墨 我猛地睁开眼,长吁一口气:“原来是场噩梦啊……” “哼!你这毒妇竟也来了?” 一声冷哼从身侧响起,我...
    开封第一讲书人阅读 38,742评论 0 271
  • 序言:老挝万荣一对情侣失踪,失踪者是张志新(化名)和其女友刘颖,没想到半个月后,有当地人在树林里发现了一具尸体,经...
    沈念sama阅读 45,193评论 1 309
  • 正文 独居荒郊野岭守林人离奇死亡,尸身上长有42处带血的脓包…… 初始之章·张勋 以下内容为张勋视角 年9月15日...
    茶点故事阅读 37,427评论 2 331
  • 正文 我和宋清朗相恋三年,在试婚纱的时候发现自己被绿了。 大学时的朋友给我发了我未婚夫和他白月光在一起吃饭的照片。...
    茶点故事阅读 39,583评论 1 346
  • 序言:一个原本活蹦乱跳的男人离奇死亡,死状恐怖,灵堂内的尸体忽然破棺而出,到底是诈尸还是另有隐情,我是刑警宁泽,带...
    沈念sama阅读 35,305评论 5 342
  • 正文 年R本政府宣布,位于F岛的核电站,受9级特大地震影响,放射性物质发生泄漏。R本人自食恶果不足惜,却给世界环境...
    茶点故事阅读 40,911评论 3 325
  • 文/蒙蒙 一、第九天 我趴在偏房一处隐蔽的房顶上张望。 院中可真热闹,春花似锦、人声如沸。这庄子的主人今日做“春日...
    开封第一讲书人阅读 31,564评论 0 21
  • 文/苍兰香墨 我抬头看了看天上的太阳。三九已至,却和暖如春,着一层夹袄步出监牢的瞬间,已是汗流浃背。 一阵脚步声响...
    开封第一讲书人阅读 32,731评论 1 268
  • 我被黑心中介骗来泰国打工, 没想到刚下飞机就差点儿被人妖公主榨干…… 1. 我叫王不留,地道东北人。 一个月前我还...
    沈念sama阅读 47,581评论 2 368
  • 正文 我出身青楼,却偏偏与公主长得像,于是被迫代替她去往敌国和亲。 传闻我的和亲对象是个残疾皇子,可洞房花烛夜当晚...
    茶点故事阅读 44,478评论 2 352

推荐阅读更多精彩内容

  • 一. Java基础部分.................................................
    wy_sure阅读 3,810评论 0 11
  • 小编费力收集:给你想要的面试集合 1.C++或Java中的异常处理机制的简单原理和应用。 当JAVA程序违反了JA...
    八爷君阅读 4,585评论 1 114
  • JAVA面试题 1、作用域public,private,protected,以及不写时的区别答:区别如下:作用域 ...
    JA尐白阅读 1,151评论 1 0
  • JAVA相关基础知识 1、面向对象的特征有哪些方面 1.抽象: 抽象就是忽略一个主题中与当前目标无关的那些方面,以...
    yangkg阅读 664评论 0 1
  • 又再看了一遍《全能住宅王》,这一集总是给我很深的思考。 _ _ _ _ _ _ _ _ _ _ _ _ _ _ _...
    昱灵Yuling阅读 235评论 0 0