- android - 多次调用 OnPrimaryClipChangedListener
- android - 无法更新 RecyclerView 中的 TextView 字段
- android.database.CursorIndexOutOfBoundsException : Index 0 requested, 光标大小为 0
- android - 使用 AppCompat 时,我们是否需要明确指定其 UI 组件(Spinner、EditText)颜色
您好,我有两个字符串集,我想获取当前存在的索引,如下所示:
我想在第二组中使用第一组中相同的索引,这样我就可以在其他地方使用这些字符串,因此如果我拥有的标记是“VatU5fy1U4cgTc3uBBiGX7G7kuT2”,那么相关的出生日期将是“2011 年 2 月 8 日”。 (参见下面的输出)。
现在我知道集合是无序的,并且无法使用索引,因为我正在使用共享首选项中的方法,例如 getStringSet,它仅检索集合而不是数组中的字符串。
我尝试将集合转换为数组,但每次使用索引时,我总是返回 -1,其中找不到字符串! :(
这是我当前的代码(非常标准并且工作完美),用于日期的共享首选项,这与其他 token 集相同:
final SharedPreferences sharedPreferences = PreferenceManager.getDefaultSharedPreferences(getApplicationContext());
final SharedPreferences.Editor editor = sharedPreferences.edit();
Set<String> myDates = sharedPreferences.getStringSet("myDates", new HashSet<String>());
String dates = sharedPreferences.getString("savedDate", "");
// Add the new value.
myDates.add(dates);
// Save the list.
editor.putStringSet("myDates", myDates);
editor.commit();
Log.w(TAG, "Onexit value of dates in array: " + String.valueOf(myDates));
输出:
Onexit value of tokens in array: [Ztg4GOqeucd6CqNAEokUe7eRHhY2, VatU5fy1U4cgTc3uBBiGX7G7kuT2]
Onexit value of dates in array: ["8th February 2012", "8th February 2011"]
以下是我尝试的将这些列表转换并视为数组的解决方案:
**//Attempt 1**
Set<String> myDates = sharedPreferences.getStringSet("myDates", new
HashSet<String>());
List<String> myDatesList = new ArrayList <String> (myDates);
int i = Arrays.asList(myDatesList).indexOf(dates);
myDates.add(dates);
List<String> myDatesList = new ArrayList <String> (myDates);
editor.putStringSet("myDates", myDates);
editor.commit();
int i = Arrays.asList(myDatesList).indexOf(dates);
返回-1 ^
**//Attempt 2**
List<String> myDatesList = new ArrayList <String> (myDates);
String datesString = TextUtils.join(";", myDatesList);
editor.putString("newdates", datesString);
editor.apply();
final String datesString = sharedPreferences.getString("newdates", "");
String dates = sharedPreferences.getString("savedDate", "");
List<String> myDatesList = new ArrayList<>();
editor.commit();
if (!datesString.isEmpty()){
myDatesList = new ArrayList<>(Arrays.asList(datesString.split(";")));
}
String datesString = TextUtils.join(";", myDatesList);
editor.putString("newdates", datesString);
editor.apply();
int i = Arrays.asList(datesString).indexOf(dates);
**returns -1** ^
**回复答案 - 更新**
回应评论:(我更改了日志)
int i = myDatesList.indexOf(datesString);
Log.w(TAG, "My dates list: " + dates + " and datesString is: " + datesString + i);
给我:
My dates list: "9th August 2017" and datesString is: "9th August 2017"0
My dates list: "9th February 2011" and datesString is: "9th August 2017";"9th February 2011"-1
为什么第二次给我的是 -1 而不是 1?
最佳答案
Arrays.asList()
接受可变参数,并不用于复制 Collection
类型,但用于创建 List<T>
哪里T
是作为参数传入的对象的类型。
当您满足以下条件时,就会发生以下情况:
// Contains each element from myDates
List<String> myDatesList = new ArrayList<String>(myDates);
并调用Arrays.asList(myDatesList).indexOf(dates)
,那是什么Arrays.asList()
返回的调用是 List<List<String>>
的实例。
// This is what's actually being returned:
List<List<String>> result = Arrays.asList(myDatesList);
在这种情况下,请调用 indexOf()
与 String
type 永远不会找到匹配项(因为 String
永远不会等于 List<String>
。事实上,这个 String
参数应该在您的 IDE 中显示为警告,指示 List<List<String>> may not contain objects of type String
。
您已经拥有 List<String>
( myDatesList
) 因此无需调用 Arrays.asList()
因为这是为了创建一个 List
传入的类型。只需调用 myDatesList.indexOf(dateString)
获取实际索引。
关于java - IndexOf 两个 HashSet 字符串 - 共享首选项,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/48696449/
如何使用 SPListCollection.Add(String, String, String, String, Int32, String, SPListTemplate.QuickLaunchO
我刚刚开始使用 C++ 并且对 C# 有一些经验,所以我有一些一般的编程经验。然而,似乎我马上就被击落了。我试过在谷歌上寻找,以免浪费任何人的时间,但没有结果。 int main(int argc,
这个问题已经有答案了: In Java 8 how do I transform a Map to another Map using a lambda? (8 个回答) Convert a Map>
我正在使用 node + typescript 和集成的 swagger 进行 API 调用。我 Swagger 提出以下要求 http://localhost:3033/employees/sear
我是 C++ 容器模板的新手。我收集了一些记录。每条记录都有一个唯一的名称,以及一个字段/值对列表。将按名称访问记录。字段/值对的顺序很重要。因此我设计如下: typedef string
我需要这两种方法,但j2me没有,我找到了一个replaceall();但这是 replaceall(string,string,string); 第二个方法是SringBuffer但在j2me中它没
If string is an alias of String in the .net framework为什么会发生这种情况,我应该如何解释它: type JustAString = string
我有两个列表(或字符串):一个大,另一个小。 我想检查较大的(A)是否包含小的(B)。 我的期望如下: 案例 1. B 是 A 的子集 A = [1,2,3] B = [1,2] contains(A
我有一个似乎无法解决的小问题。 这里...我有一个像这样创建的输入... var input = $(''); 如果我这样做......一切都很好 $(this).append(input); 如果我
我有以下代码片段 string[] lines = objects.Split(new string[] { "\r\n", "\n" }, StringSplitOptions.No
这可能真的很简单,但我已经坚持了一段时间了。 我正在尝试输出一个字符串,然后输出一个带有两位小数的 double ,后跟另一个字符串,这是我的代码。 System.out.printf("成本:%.2
以下是 Cloud Firestore 列表查询中的示例之一 citiesRef.where("state", ">=", "CA").where("state", "= 字符串,我们在Stack O
我正在尝试检查一个字符串是否包含在另一个字符串中。后面的代码非常简单。我怎样才能在 jquery 中做到这一点? function deleteRow(locName, locID) { if
这个问题在这里已经有了答案: How to implement big int in C++ (14 个答案) 关闭 9 年前。 我有 2 个字符串,都只包含数字。这些数字大于 uint64_t 的
我有一个带有自定义转换器的 Dozer 映射: com.xyz.Customer com.xyz.CustomerDAO customerName
这个问题在这里已经有了答案: How do I compare strings in Java? (23 个回答) 关闭 6 年前。 我想了解字符串池的工作原理以及一个字符串等于另一个字符串的规则是
我已阅读 this问题和其他一些问题。但它们与我的问题有些无关 对于 UILabel 如果你不指定 ? 或 ! 你会得到这样的错误: @IBOutlet property has non-option
这两种方法中哪一种在理论上更快,为什么? (指向字符串的指针必须是常量。) destination[count] 和 *destination++ 之间的确切区别是什么? destination[co
This question already has answers here: Closed 11 years ago. Possible Duplicates: Is String.Format a
我有一个Stream一个文件的,现在我想将相同的单词组合成 Map这很重要,这个词在 Stream 中出现的频率. 我知道我必须使用 collect(Collectors.groupingBy(..)
我是一名优秀的程序员,十分优秀!