null 値を HashMap に渡すにはどうすればよいですか?
次のコード スニペットは、オプションが入力された状態で機能します。
HashMap<String, String> options = new HashMap<String, String>();
options.put("name", "value");
Person person = sample.searchPerson(options);
System.out.println(Person.getResult().get(o).get(Id));
問題は、null 値を渡すためにオプションやメソッドに何を入力する必要があるかということです。
次のコードを試してみましたが、成功しませんでした:
options.put(null, null);
Person person = sample.searchPerson(null);
options.put(" ", " ");
Person person = sample.searchPerson(null);
options.put("name", " ");
Person person = sample.searchPerson(null);
options.put();
Person person = sample.searchPerson();