gpt4 book ai didi

java - 本地驱动器中图像的路径

转载 作者:行者123 更新时间:2023-11-29 03:36:25 25 4
gpt4 key购买 nike

我正在使用以下代码将本地驱动器中的图像用作工具提示,但它不显示图片:

String path = "C:/images/A.png";
labelIMG.setToolTipText("<html><img src='"+path+"'></html>");

任何解决此问题的方法,提前致谢!

最佳答案

工具提示呈现需要 URL,而不是文件引用...

试试这样的方法。

String path = "C:/images/A.png";
File file = new File(path);
labelIMG.setToolTipText("<html><img src='"+file.toURI().toURL()+"'></html>");

当然,您可以只使用一个简单的 String,但在我的脑海中,它可能看起来像 file:///c:/images/A。 png(我目前不是Windows box,所以无法查看,sorry)

关于java - 本地驱动器中图像的路径,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/15291039/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com