从 Twitter 检索用户个人资料图像
我正在使用 Java 中的 Twitter4J API 来检索登录的 Twitter 用户的个人资料图像。该命令类似于:
twitter.getProfileImage(twitter.getScreenName(), Imagesize);
图像大小是多少?例如,如何在标签中显示 ProfileImage
对象?
I am using the Twitter4J API in Java to retrieve the profile image for a Twitter user whose logged in. The command is something like :
twitter.getProfileImage(twitter.getScreenName(), Imagesize);
What is the image size? How can I display the ProfileImage
object in a label for example?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
好的,答案是:
假设 Twitter 对象是 twitter
1 - 从 twitter 对象中获取用户
2 - 获取个人资料图像 URL
3 - 创建图像图标
4 - 将 JLabel 图标设置为 ImageIcon
ok, the answer is :
Assume that the Twitter object is twitter
1 - get the user from the twitter object
2 - get the profile image URL
3 - create Image icon
4 - set the JLabel icon to be the ImageIcon
看一下示例代码。
https:/ /github.com/yusuke/twitter4j/blob/master/twitter4j-examples/src/main/java/twitter4j/examples/user/GetProfileImage.java
您可以通过ProfileImage.MINI、ProfileImage.NORMAL 或 ProfileImage.BIGGER
Take a look at the example code.
https://github.com/yusuke/twitter4j/blob/master/twitter4j-examples/src/main/java/twitter4j/examples/user/GetProfileImage.java
You can pass either ProfileImage.MINI, ProfileImage.NORMAL or ProfileImage.BIGGER