1
I am generating *.csv files from this:
BufferedWriter strW = new BufferedWriter(new FileWriter(caminhoCSV.toString()))
However the generated files are only with read permission, how could you change this so that the generated file has read and change permission?
final File
is necessary or onlyFile
is enough?– R.Santos
does not necessarily need to be
final
but use to ensure that you are not modifying the value improperly– 13dev
Perfect, worked as needed +1
– R.Santos