将 R.java 变量转换为 URI

发布于 2024-12-07 22:11:29 字数 78 浏览 0 评论 0原文

这是否可以将 R.java 变量转换为 URI 引用? URI 可以是什么?

PS:我知道这个问题很愚蠢。但感谢您的帮助..

Is this possible converting R.java variable to URI reference?
What can be URI?

PS: So silly question I know. But thanks for your kind helps..

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

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

发布评论

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

评论(1

毁梦 2024-12-14 22:11:29

您的意思是您将 URI 作为字符串值存储在 xml 文件中,并且需要将它们转换为 java.net.URI 对象吗?

如果是这样...

在一个名为 uris.xml 的 xml 文件中

<resources>
    <string name="stackoverflow">http://www.stackoverflow.com</string>
</resources>

,然后在您的 Java 代码中您可以使用

import java.net.URI;

URI stackoverflowUri = new URI(getResources().getString(R.uri.stackoverflow));

(您需要添加代码来捕获由新 URI 调用)

Do you mean that you're storing URIs as string values in an xml file, and need to convert those into java.net.URI objects?

If so...

In an xml file called uris.xml

<resources>
    <string name="stackoverflow">http://www.stackoverflow.com</string>
</resources>

And then in your Java code you can use

import java.net.URI;

URI stackoverflowUri = new URI(getResources().getString(R.uri.stackoverflow));

(you'll need to add code to catch any URISyntaxException thrown by the new URI call)

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