From c7e40f0c59d7f09cd365a357d935234795cff709 Mon Sep 17 00:00:00 2001 From: richie Date: Fri, 23 Sep 2022 07:08:16 +0800 Subject: [PATCH] =?UTF-8?q?=E4=BF=AE=E6=94=B9=E6=96=87=E6=A1=A3=E8=AF=B4?= =?UTF-8?q?=E6=98=8E?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- README.md | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/README.md b/README.md index 7568584..6e0132a 100644 --- a/README.md +++ b/README.md @@ -43,6 +43,13 @@ String tableId = operation.createTable("HelloTable", "#分组Id(可选)"); ### 更新表数据 +数据的格式采用csv文件存储,格式如下,假设文件名为data.csv,其内容为: + +``` +"合同签约时间(Year Month Day)","城市","国家","客户名称","省份","回款金额","合同金额" +"18/1/2016","杭州市","中国","浙江臻善科技有限公司","浙江省","1200000","1200000" +``` + ```java Authentication authentication = new Authentication("#key", "#secret"); DatasourceOperation operation = new DatasourceOperation(authentication);