我可以使用远程 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 服务器吗?