如何将数据上传到本地数据存储区?

时间:2012-09-16 14:01:45

标签: google-app-engine

我可以使用远程API更新实时数据存储区,但本地数据存储区是否有类似内容?我的数据是CSV格式。

当我尝试使用以下代码进行本地连接时

String username = "test";
String password = "test";
    RemoteApiOptions options = new RemoteApiOptions().server("localhost", 8888).credentials(username, password);
RemoteApiInstaller installer = new RemoteApiInstaller();
installer.install(options);

我得到一个例外:

线程“main”中的异常java.net.UnknownHostException:http

该行引发异常:

  

installer.install(选项);

本地服务器正在运行,我是否正确连接?我是否需要单独启动本地remote_api服务器?

1 个答案:

答案 0 :(得分:1)

我终于通过大量的搜索工作了。开发网址/密码为XXXX / XXXX

从这里采取:https://groups.google.com/forum/?fromgroups=#!topic/google-appengine-java/1cQWn0UEoMc

我无法在google应用引擎文档中的任何位置找到此内容。