Is there a way to write integer to a file in java
问题 I have a program that converts Excel to CSV and I used 2 ways to do this: one of them uses CsvWriter write and the other program uses BufferedWriter write but the problem that I have encountered here is in order to write an Integer to a file you need to convert it to string with String.valueOf(myInt); but I need a pure Integer not a string because when I am trying to upload this file in Oracle database it throws me Ora-01722 invalid number exception I tried to create a CSV file from my