私はMap<String,String>
このようなJavaを持っています:
{card_switch=Master, issuing_bank=ICCI, card_Type=DebitCard}
単純なjsonパーサーを使用して、このマップをjsonオブジェクトに解析しています。
私は試した :
Object json = JSONValue.parse(entry.getKey());
しかし、エラーメッセージが表示されます:
Object json = JSONValue.parse(entry.getKey());
^
method JSONValue.parse(String) is not applicable
(actual argument Map<String,String> cannot be converted to String by method invocation conversion)
method JSONValue.parse(Reader) is not applicable
(actual argument Map<String,String> cannot be converted to Reader by method invocation conversion)
Map<String,String>
jsonに変換することは可能ですか?