如何在Spring中加载资源并将其内容用作字符串

如何在Spring中加载资源并将其内容用作字符串,第1张

如何在Spring中加载资源并将其内容用作字符串
<bean id="contents"  factory-method="toString">    <constructor-arg value="classpath:path/to/resource.txt" type="java.io.InputStream" /></bean>

解决方案需要Apache Commons IO。

@Parvez建议的另一种没有Apache Commons IO依赖性的解决方案是

<bean id="contents" >    <constructor-arg>        <bean  factory-method="copyToByteArray"> <constructor-arg value="classpath:path/to/resource.txt" type="java.io.InputStream" />        </bean>         </constructor-arg></bean>


欢迎分享,转载请注明来源:内存溢出

原文地址: http://outofmemory.cn/zaji/5438840.html

(0)
打赏 微信扫一扫 微信扫一扫 支付宝扫一扫 支付宝扫一扫
上一篇 2022-12-11
下一篇 2022-12-11

发表评论

登录后才能评论

评论列表(0条)

保存