Skip to content

Instantly share code, notes, and snippets.

@rborude24
rborude24 / gist:28a820cfbbbb98f8f12d29aba0e07be2
Last active July 19, 2020 14:47
Reading, Writing & Appending data into CSV as a key-value pair using Java
//reading the existing data present in file
public void addDataToCsv(String fileLocation,String key, String value,String delimiter) {
Map<String,String> keyValueData = new LinkedHashMap<>();
keyValueData.put(key,value);
File file = new File(fileLocation);
if(!file.exists()) {
try {
boolean status = file.createNewFile();
if(status)
log.info("File created successfully");
@rborude24
rborude24 / CoronaINdia.ipynb
Created April 30, 2020 05:03
Created on Skills Network Labs
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
@rborude24
rborude24 / part3.ipynb
Created April 25, 2020 08:02
Created on Skills Network Labs
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
@rborude24
rborude24 / part2.ipynb
Created April 25, 2020 07:12
Created on Skills Network Labs
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
@rborude24
rborude24 / Captstone_Project.ipynb
Created April 25, 2020 04:51
Created on Skills Network Labs
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
@rborude24
rborude24 / My_Notebook.ipynb
Created April 19, 2020 12:07
Created on Skills Network Labs
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
@rborude24
rborude24 / My_Notebook.ipynb
Created April 19, 2020 12:07
Created on Skills Network Labs
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.