Java android app,将数据发布到google电子表格" true"或者' false"选项

时间:2014-12-08 15:33:20

标签: java android google-apps-script

我在Youtube上关注了如何将数据发布到Google电子表格的教程。 它有效,我可以将文字发送到电子表格。 一切都很棒,但我需要能够在电子表格中使用select来查看真或假的问题。 我正在使用的代码:

    public void postData() {

    String fullUrl = "https://docs.google.com/forms/d/1kgVjyzamlIVSkd-BiW5iA-AHkVLqcNf9IxObyNyygTg/formResponse";
    HttpRequest mReq = new HttpRequest();
    String col1 = "Hello";
    String col2 = "World";
    String col3 = "true";
    String data = "entry_221637619=" + URLEncoder.encode(col1) + "&" + 
                  "entry_838953460=" + URLEncoder.encode(col2) + "&" +
                  "entry_1848159036=" + URLEncoder.encode(col3);


    String response = mReq.sendPost(fullUrl, data);
    Log.i(myTag, response);
} 

String col3是使用true或false问题的变量。 如果我从这个代码中删除col3它将工作,但因为它是一个必填字段,它不起作用。 有谁知道如何做到这一点? 链接到表单:http://goo.gl/forms/agGnl39cXT 链接到回复:https://docs.google.com/spreadsheets/d/10Mjbwmlu_C-2OSQmMyS-5_-8GnRQhXw0Dd6_KG5onQM/pubhtml

0 个答案:

没有答案