以编程方式访问struts中的属性文件

发布于 2024-11-27 07:03:29 字数 82 浏览 1 评论 0原文

我正在尝试访问 struts java 文件中的 propertyfile 来自定义消息。我想知道如何在java文件中以编程方式访问属性文件中的密钥。

I am trying to access the propertfile for customizing the message , in struts java file. I would like to know how to access the key in property file programmatically inside java file.

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

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

发布评论

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

评论(1

陪你搞怪i 2024-12-04 07:03:29

您可以在结构操作类中尝试此操作:

    String fileName ="filepname"; //property fileName 
    FileInputStream fis = new FileInputStream(new File(fileName));
    Properties props = new Properties();
    props.load(fis); //load the property file

    String posterVarName = props.getProperty("property"); //get property

You can try this in your structs action class :

    String fileName ="filepname"; //property fileName 
    FileInputStream fis = new FileInputStream(new File(fileName));
    Properties props = new Properties();
    props.load(fis); //load the property file

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