将 R.java 变量转换为 URI
这是否可以将 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您的意思是您将 URI 作为字符串值存储在 xml 文件中,并且需要将它们转换为
java.net.URI
对象吗?如果是这样...
在一个名为
uris.xml
的 xml 文件中,然后在您的 Java 代码中您可以使用
(您需要添加代码来捕获由
新 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
And then in your Java code you can use
(you'll need to add code to catch any
URISyntaxException
thrown by thenew URI
call)