我目前正在尝试连接到Bloomberg API,但在尝试了一天后仍然无法使其运行。
以下是 API 指南中的示例代码,我不断收到“无法启动会话”的部分。尝试连接时。
public static void main(String[] args) throws Exception {
SessionOptions sessionOptions = new SessionOptions();
sessionOptions.setServerHost("localhost"); // default value
sessionOptions.setServerPort(8194); // default value
Session session = new Session(sessionOptions);
if (!session.start()) {
System.out.println("Could not start session.");
System.exit(1);
}
if (!session.openService("//blp/refdata")) {
System.out.println("Could not open service " +
"//blp/refdata");
System.exit(1);
}
}
我还尝试了指南中提供的异步示例,但也没有运气。
为了使用 API,我有什么遗漏的吗?或者如果我必须申请一个帐户才能使用 API,请告诉我 :)