我很难找到一个访问应用程序对象的新手友好示例。我有一些东西(数组)我想存储在应用程序对象中作为持久数据保留大约 2 小时,直到 AppRecycle。
无论如何,我知道如何以这种方式设置应用程序对象变量:
// One way
String[] users = new String[1000];
Application["users"] = users;
// Another way
Application.Add("users", users);
但是,一旦它们位于应用程序对象中,我不知道如何访问这些变量。有一个 Getter 方法Get
。但是它需要int index
. 另一种方法,Contents
,得到一切,而不仅仅是我的数组。
在这里,我尝试检索我的 String[] 数组,但它给了我一个错误,我试图将 Object 转换为 String。
String[] usersTable = Application["users"];
// Since this is an object i also tried Application.users but gives error