url:
http ://www.xxx.com/getUser?userid=1&username=john&usersex=1
Javaクラス:
Class User{
private long userId;
private String userName;
private int userSex;
// get and set methods
...
//constructos
User(long userId, String userName, int userSex){
this.userId = userId;
this.userName = userName;
this.userSex = userSex;
}
}
このURLをUserオブジェクトに変換する方法は?このURLの場合、User user = new User(1、 "john"、1)を取得したいのですが、Javaフレームワークはありますか?