我将文件保存在Google云端硬盘中(有关文档,请参阅Google Drive Doc)
File file = service.files().get("fileId").execute();
java.io.File fileContent = new java.io.File("path/file.csv");
FileContent mediaContent = new FileContent("text/csv", fileContent);
// Send the request to the API.
File updatedFile = service.files().update("fileId", file, mediaContent).execute();
问题是我的CSV文件中有String值,有数字格式(例如018),当它们保存在Google Drive文件中时,它们被视为数值(所以我有18而不是018 )。
是否可以指定列的类型?
答案 0 :(得分:0)
我在每一行的开头添加了一个单引号'。这会通知Excel不将值视为数字 资料来源:how to write to csv with a leading zero?