0

我可以使用远程 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);

我得到一个例外:

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

异常在 line 抛出:

安装程序。安装(选项);

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

4

1 回答 1

1

我终于通过大量的搜索来解决这个问题。开发网址/密码为 XXXX/XXXX

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

我无法在谷歌应用引擎文档的任何地方找到这个指定的。

于 2012-09-16T20:39:03.923 回答