从 Twitter 检索用户个人资料图像

发布于 2024-12-26 03:01:55 字数 212 浏览 1 评论 0原文

我正在使用 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

不羁少年 2025-01-02 03:01:55

好的,答案是:

假设 Twitter 对象是 twitter

1 - 从 twitter 对象中获取用户

User user = twitter.showUser(twitter.getid());

2 - 获取个人资料图像 URL

URL url = user.getProfileImageURL();

3 - 创建图像图标

ImageIcon img = new ImageIcon(url);

4 - 将 JLabel 图标设置为 ImageIcon

Jlabel1.setIcon(img);

ok, the answer is :

Assume that the Twitter object is twitter

1 - get the user from the twitter object

User user = twitter.showUser(twitter.getid());

2 - get the profile image URL

URL url = user.getProfileImageURL();

3 - create Image icon

ImageIcon img = new ImageIcon(url);

4 - set the JLabel icon to be the ImageIcon

Jlabel1.setIcon(img);
月牙弯弯 2025-01-02 03:01:55

看一下示例代码。
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

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文