let I have a hashmap HashMap. Now I want to write all the values row-wise into a CSV file
HashMap:
Key: BOF Value: SAPF,754
Key: BOM Value: SAPM,456
Key: BOL Value: SAPL,987
I want to make a csv with this format:
SAPF,754
SAPM,456
SAPL,987
How to do it?