机器人在qq频道如何发送图片 #157
Answered
by
ForteScarlet
naozhong1564856979
asked this question in
Q&A
-
涉及的编程语言Java 涉及的组件库QQ频道 疑问描述看了标准消息那个文档,有点看不懂,那个文档适用频道吗,然后图片的发送在频道咋操作 |
Beta Was this translation helpful? Give feedback.
Answered by
ForteScarlet
Jul 6, 2023
Replies: 2 comments 2 replies
-
Path path = Paths.get("xxx/你的图片.jpg");
PathResource resource = Resource.of(path);
ResourceImage image = Image.of(resource);
event.replyBlocking(image);
// or
event.getChannel().sendBlocking(image); |
Beta Was this translation helpful? Give feedback.
2 replies
Answer selected by
naozhong1564856979
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Image
适用于QQ频道。构建并发送一个Image
即可。