- Java 双重比较
- java - 比较器与 Apache BeanComparator
- Objective-C 完成 block 导致额外的方法调用?
- database - RESTful URI 是否应该公开数据库主键?
我有一个基本问题。我有这个 ArrayList:
@Named("AccountProfileController")
@ViewScoped
public class AccountProfile implements Serializable
{
@Resource(name = "jdbc/Oracle")
private DataSource ds;
private int id;
// Constructor
public AccountProfile()
{
// get the ID value
try
{
this.id = Integer.parseInt((String) FacesContext.getCurrentInstance().getExternalContext().getRequestParameterMap().get("id"));
}
catch (Exception e)
{
this.id = 0;
}
}
// Create List to store user data
public ArrayList<userdata> dataList = new ArrayList<>();
public class userdata
{
int userid;
int groupid;
String specialnumber;
String username;
String passwd;
Date datetochangepasswd;
String address;
String stateregion;
String country;
String userstatus;
String telephone;
Date dateuseradded;
Date userexpiredate;
Date dateuserlocked;
String city;
String email;
String description;
public userdata(int userid, int groupid, String specialnumber, String username, String passwd, Date datetochangepasswd,
String address, String stateregion, String country, String userstatus, String telephone, Date dateuseradded,
Date userexpiredate, Date dateuserlocked, String city, String email, String description)
{
this.userid = userid;
this.groupid = groupid;
this.specialnumber = specialnumber;
this.username = username;
this.passwd = passwd;
this.datetochangepasswd = datetochangepasswd;
this.address = address;
this.stateregion = stateregion;
this.country = country;
this.userstatus = userstatus;
this.telephone = telephone;
this.dateuseradded = dateuseradded;
this.userexpiredate = userexpiredate;
this.dateuserlocked = dateuserlocked;
this.city = city;
this.email = email;
this.description = description;
}
public String getAddress()
{
return address;
}
public void setAddress(String address)
{
this.address = address;
}
public String getCity()
{
return city;
}
public void setCity(String city)
{
this.city = city;
}
public String getCountry()
{
return country;
}
public void setCountry(String country)
{
this.country = country;
}
public Date getDatetochangepasswd()
{
return datetochangepasswd;
}
public void setDatetochangepasswd(Date datetochangepasswd)
{
this.datetochangepasswd = datetochangepasswd;
}
public Date getDateuseradded()
{
return dateuseradded;
}
public void setDateuseradded(Date dateuseradded)
{
this.dateuseradded = dateuseradded;
}
public Date getDateuserlocked()
{
return dateuserlocked;
}
public void setDateuserlocked(Date dateuserlocked)
{
this.dateuserlocked = dateuserlocked;
}
public String getDescription()
{
return description;
}
public void setDescription(String description)
{
this.description = description;
}
public String getEmail()
{
return email;
}
public void setEmail(String email)
{
this.email = email;
}
public int getGroupid()
{
return groupid;
}
public void setGroupid(int groupid)
{
this.groupid = groupid;
}
public String getPasswd()
{
return passwd;
}
public void setPasswd(String passwd)
{
this.passwd = passwd;
}
public String getSpecialnumber()
{
return specialnumber;
}
public void setSpecialnumber(String specialnumber)
{
this.specialnumber = specialnumber;
}
public String getStateregion()
{
return stateregion;
}
public void setStateregion(String stateregion)
{
this.stateregion = stateregion;
}
public String getTelephone()
{
return telephone;
}
public void setTelephone(String telephone)
{
this.telephone = telephone;
}
public Date getUserexpiredate()
{
return userexpiredate;
}
public void setUserexpiredate(Date userexpiredate)
{
this.userexpiredate = userexpiredate;
}
public int getUserid()
{
return userid;
}
public void setUserid(int userid)
{
this.userid = userid;
}
public String getUsername()
{
return username;
}
public void setUsername(String username)
{
this.username = username;
}
public String getUserstatus()
{
return userstatus;
}
public void setUserstatus(String userstatus)
{
this.userstatus = userstatus;
}
}
// Getter for the data list
public ArrayList<userdata> getuserdata()
{
return dataList;
}
@PostConstruct
public void initData() throws SQLException
{
// settingsMap = new HashMap<String, String>();
if (ds == null)
{
throw new SQLException("Can't get data source");
}
// Initialize a connection to Oracle
Connection conn = ds.getConnection();
if (conn == null)
{
throw new SQLException("Can't get database connection");
}
// With SQL statement get all settings and values
PreparedStatement ps = conn.prepareStatement("SELECT * from USERS where USERID = ?");
ps.setInt(1, id);
try
{
//get data from database
ResultSet result = ps.executeQuery();
while (result.next())
{
// Put the the data from Oracle into Array List
dataList.add(new userdata(result.getInt("USERID"),
result.getInt("GROUPID"),
result.getString("SPECIALNUMBER"),
result.getString("USERNAME"),
result.getString("PASSWD"),
toDate(result.getString("DATETOCHANGEPASSWD")),
result.getString("ADDRESS"),
result.getString("STATEREGION"),
result.getString("COUNTRY"),
result.getString("USERSTATUS"),
result.getString("TELEPHONE"),
toDate(result.getString("DATEUSERADDED")),
toDate(result.getString("USEREXPIREDATE")),
toDate(result.getString("DATEUSERLOCKED")),
result.getString("CITY"),
result.getString("EMAIL"),
result.getString("DESCRIPTION")));
}
}
finally
{
ps.close();
conn.close();
}
}
// Call Crypto library for password convert into SHA hash
@Inject
@OSGiService(dynamic = true, waitTimeout = 5)
transient CryptoSHA SHA;
// Convert Password String into SHA hash
public String passwdConvert(String password) throws NoSuchAlgorithmException
{
return SHA.ShaEncryptHash(password);
}
// Insert the data into Oracle
public void saveData() throws SQLException, java.text.ParseException, NoSuchAlgorithmException
{
String SqlStatement = null;
if (ds == null)
{
throw new SQLException();
}
Connection conn = ds.getConnection();
if (conn == null)
{
throw new SQLException();
}
PreparedStatement ps = null;
try
{
conn.setAutoCommit(false);
boolean committed = false;
try
{ /*
* insert into Oracle the default system(Linux) time
*/
SqlStatement = "UPDATE USERS "
+ "SET "
+ "USERID = ?, "
+ "GROUPID = ?, "
+ "SPECIALNUMBER = ?, "
+ "USERNAME = ?, "
+ "PASSWD = ?, "
+ "DATETOCHANGEPASSWD = ?, "
+ "ADDRESS = ?, "
+ "STATEREGION = ?, "
+ "COUNTRY = ?, "
+ "USERSTATUS = ?, "
+ "TELEPHONE = ?, "
+ "DATEUSERADDED = ?, "
+ "USEREXPIREDATE = ?, "
+ "DATEUSERLOCKED = ?, "
+ "CITY = ?, "
+ "EMAIL = ?, "
+ "DESCRIPTION = ? "
+ "WHERE USERID = " + id;
ps = conn.prepareStatement(SqlStatement);
ps.setInt(1, dataList.get(userid));
ps.setInt(2, dataList.get(groupid));
ps.setString(3, dataList.get(specialnumber));
ps.setString(4, dataList.get(username));
ps.setString(5, passwdConvert(dataList.get(passwd)));
ps.setDate(6, toDate(dataList.get(datetochangepasswd)));
ps.setString(7, dataList.get(address));
ps.setString(8, dataList.get(stateregion));
ps.setString(9, dataList.get(country));
ps.setString(10, dataList.get(userstatus));
ps.setString(11, dataList.get(telephone));
ps.setDate(12, toDate(dataList.get(dateuseradded)));
ps.setDate(13, toDate(dataList.get(userexpiredate)));
ps.setDate(14, toDate(dataList.get(dateuserlocked)));
ps.setString(15, dataList.get(city));
ps.setString(16, dataList.get(email));
ps.setString(17, dataList.get(description));
ps.executeUpdate();
conn.commit();
committed = true;
}
finally
{
if (!committed)
{
conn.rollback();
}
}
}
finally
{
/*
* Release the resources
*/
ps.close();
conn.close();
}
}
//!!!! http://stackoverflow.com/questions/11135675/unparseable-date-30-jun-12
// Convert the Date format
public Date toDate(String s)
{
Date d = null;
if (s == null || s.trim().isEmpty())
{
return d;
}
try
{
d = Date.valueOf(s);
}
catch (Exception x)
{
x.printStackTrace();
}
return d;
}
}
我尝试使用这段 Java 代码获取元素:
ps.setInt(1, dataList.get(userid));
ps.setInt(2, dataList.get(groupid));
ps.setString(3, dataList.get(specialnumber));
ps.setString(4, dataList.get(username));
ps.setString(5, passwdConvert(dataList.get(passwd)));
ps.setDate(6, toDate(dataList.get(datetochangepasswd)));
ps.setString(7, dataList.get(address));
ps.setString(8, dataList.get(stateregion));
ps.setString(9, dataList.get(country));
ps.setString(10, dataList.get(userstatus));
ps.setString(11, dataList.get(telephone));
ps.setDate(12, toDate(dataList.get(dateuseradded)));
ps.setDate(13, toDate(dataList.get(userexpiredate)));
ps.setDate(14, toDate(dataList.get(dateuserlocked)));
ps.setString(15, dataList.get(city));
ps.setString(16, dataList.get(email));
ps.setString(17, dataList.get(description));
但我在 Netbeans 中遇到错误。你能告诉我从 ArrayList 中获取元素的正确方法是什么吗?
祝福
最佳答案
使用 for-each 循环这是优化方式...
for(userdata obj : dataList){
System.out.println("User ID :: " + obj.userid);
System.out.println("Group ID :: " + obj.groupid);
.
.
.
}
使用for循环
for(int i =0;i<datalist.size();i++){
userdate obj=datalist.get(i);
System.out.println("User ID :: " + obj.userid);
System.out.println("Group ID :: " + obj.groupid);
.
.
.
}
关于java - Java ArrayList获取元素的方法,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/11690988/
我想了解 Ruby 方法 methods() 是如何工作的。 我尝试使用“ruby 方法”在 Google 上搜索,但这不是我需要的。 我也看过 ruby-doc.org,但我没有找到这种方法。
Test 方法 对指定的字符串执行一个正则表达式搜索,并返回一个 Boolean 值指示是否找到匹配的模式。 object.Test(string) 参数 object 必选项。总是一个
Replace 方法 替换在正则表达式查找中找到的文本。 object.Replace(string1, string2) 参数 object 必选项。总是一个 RegExp 对象的名称。
Raise 方法 生成运行时错误 object.Raise(number, source, description, helpfile, helpcontext) 参数 object 应为
Execute 方法 对指定的字符串执行正则表达式搜索。 object.Execute(string) 参数 object 必选项。总是一个 RegExp 对象的名称。 string
Clear 方法 清除 Err 对象的所有属性设置。 object.Clear object 应为 Err 对象的名称。 说明 在错误处理后,使用 Clear 显式地清除 Err 对象。此
CopyFile 方法 将一个或多个文件从某位置复制到另一位置。 object.CopyFile source, destination[, overwrite] 参数 object 必选
Copy 方法 将指定的文件或文件夹从某位置复制到另一位置。 object.Copy destination[, overwrite] 参数 object 必选项。应为 File 或 F
Close 方法 关闭打开的 TextStream 文件。 object.Close object 应为 TextStream 对象的名称。 说明 下面例子举例说明如何使用 Close 方
BuildPath 方法 向现有路径后添加名称。 object.BuildPath(path, name) 参数 object 必选项。应为 FileSystemObject 对象的名称
GetFolder 方法 返回与指定的路径中某文件夹相应的 Folder 对象。 object.GetFolder(folderspec) 参数 object 必选项。应为 FileSy
GetFileName 方法 返回指定路径(不是指定驱动器路径部分)的最后一个文件或文件夹。 object.GetFileName(pathspec) 参数 object 必选项。应为
GetFile 方法 返回与指定路径中某文件相应的 File 对象。 object.GetFile(filespec) 参数 object 必选项。应为 FileSystemObject
GetExtensionName 方法 返回字符串,该字符串包含路径最后一个组成部分的扩展名。 object.GetExtensionName(path) 参数 object 必选项。应
GetDriveName 方法 返回包含指定路径中驱动器名的字符串。 object.GetDriveName(path) 参数 object 必选项。应为 FileSystemObjec
GetDrive 方法 返回与指定的路径中驱动器相对应的 Drive 对象。 object.GetDrive drivespec 参数 object 必选项。应为 FileSystemO
GetBaseName 方法 返回字符串,其中包含文件的基本名 (不带扩展名), 或者提供的路径说明中的文件夹。 object.GetBaseName(path) 参数 object 必
GetAbsolutePathName 方法 从提供的指定路径中返回完整且含义明确的路径。 object.GetAbsolutePathName(pathspec) 参数 object
FolderExists 方法 如果指定的文件夹存在,则返回 True;否则返回 False。 object.FolderExists(folderspec) 参数 object 必选项
FileExists 方法 如果指定的文件存在返回 True;否则返回 False。 object.FileExists(filespec) 参数 object 必选项。应为 FileS
我是一名优秀的程序员,十分优秀!