我正在使用google app引擎后端创建一个android应用。

尝试从google数据存储区中读取数据时,我看到我应该使用一种名为“ CloudEndpointUtils”的东西-但由于无法将其识别为已知变量而无法使用。

我不知道在哪里可以找到这些工具。我不知道在哪里看。...您能帮我指出正确的方向吗?

    Myendpoint.Builder endpointBuilder = new Myendpoint.Builder(
                    AndroidHttp.newCompatibleTransport(), new JacksonFactory(),
                    null);

////This line shows an error because CloudEndpointUtils is not a known class...  But how do I add it???
           endpointBuilder =     CloudEndpointUtils.updateBuilder(endpointBuilder).setApplicationName(MainActivity.APPLICATION_NAME);

            endpoint = endpointBuilder.build();

            try {
                 result = endpoint.listStuff().execute();
            } catch (IOException e) {
                // TODO Auto-generated catch block
                e.printStackTrace();
                // SynchKey = 0;
                // result = null;
            }

            return result;

最佳答案

CloudEndpointUtilsgoogle-api-java-client库的一部分。

10-08 20:24