如何在Eclipse中运行AwReporting?

时间:2015-05-12 05:22:19

标签: adwords-apiv201402

我收到错误

  

错误| com.google.api.ads.adwords.awreporting.AwReporting | AwReporting]缺少所需选项:' file'

当我尝试运行AwReporting.java

1 个答案:

答案 0 :(得分:0)

您必须向程序提供一些信息作为命令行参数才能运行(-file,-startDate,-endDate)。

解决方案1:

  1. 右键单击eclipe中的AwReporting.java内部,转到Run As->运行配置。
  2. 点击参数标签,然后在程序参数框中添加以下内容
  3.   

    -file adword属性文件位置 -startDate 开始日期 -endDate end日期

    示例:

      

    -file src / main / resources / aw-report-sample.properties -startDate 20160126 -endDate 20160127

    解决方案2:

    您可以使用AwReporting.java上main()函数第一行中的以下代码替换args变量。

    args = new String[] {"-file","<adword property file location>","-startDate","<YYYYMMDD>","-endDate","<YYYYMMDD>"};
    

    示例:

    public static void main(String args[])
    {
    args = new String[] {"-file","src/main/resources/aw-report-sample.properties","-startDate","20160126","-endDate","20160127"};