我无法让我的项目在我的twitter4j.properties
文件中读取,即使我已将其复制到Eclipse中项目文件夹的根目录。我已根据配置指南填写了属性文件,如下所示:
oauth.consumerKey=thisismyconsumerkey
oauth.consumerSecret=thisismyconsumersecret
oath.accessToken=14778563-thisismyaccesstoken
oath.accessTokenSecret=thisismyaccesstokensecret
debug=true
http.prettyDebug=true
我正在发起一条Twitter流:
TwitterStream twitterStream = new TwitterStreamFactory().getInstance();
twitterStream.addListener(listener);
twitterStream.sample();
如果我使用ConfigurationBuilder
手动设置应用程序,我可以让应用程序运行,但我希望应用程序能够读取我的属性文件。为了让我的项目识别文件,我还需要做些什么吗?
答案 0 :(得分:1)
完全忽略了我的accessToken和accessTokenSecret。 oath
应为oauth
。让这成为一个教训:不要编码到深夜。
为了它的价值,我把twitter4j.properties
文件放在我的项目文件夹的根目录中,它完美无缺。