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 Fileis necessary or onlyFileis enough?– R.Santos
does not necessarily need to be
finalbut use to ensure that you are not modifying the value improperly– 13dev
Perfect, worked as needed +1
– R.Santos