Spring入门——Resource

本文介绍了Spring中的Resource接口,它是处理资源文件的统一接口。详细讲解了UrlResource、ClassPathResource、FileSystemResource、ServletContextResource、InputStreamResource和ByteArrayResource六种类型的Resource,分别对应于URL、类路径、文件系统、ServletContext环境及输入流和字节数组资源的访问。

摘要生成于 C知道 ,由 DeepSeek-R1 满血版支持, 前往体验 >

Resource

针对于资源文件的统一接口

Resource

-UrlResource:URL对应的资源,根据一个URL地址即可构建

-ClassPathResource:获取类路径下的资源文件

-FileSystemResource:获取文件系统里面的资源

-ServletContextResource:ServletContext封装的资源,用于访问ServletContext环境下的资源

-InputStreamResource:针对于输入流封装的资源

-ByteArrayResource:针对于字节数组封装的资源



例子:

Resource

package com.txr.resourceStudy;

import java.io.IOException;

import org.springframework.beans.BeansException;
import org.springframework.context.ApplicationContext;
import org.springframework.context.ApplicationContextAware;
import org.springframework.core.io.Resource;
public class ResourceStudy implements ApplicationContextAware{

	private ApplicationContext applicationContext;
	
	@Override
	public void setApplicationContext(ApplicationContext arg0) throws BeansException {
		this.applicationContext =arg0;
	}
	
	
	public void resource() throws IOException
	{
		Resource resource = applicationContext.getResource("a.txt");
		System.out.println(resource.getFilename());
		System.out.println(resource.contentLength());
	}
}
测试

@Test
	public void testResource()
	{
		ResourceStudy resourceStudy=(ResourceStudy)context.getBean("resource");
		try {
			resourceStudy.resource();
		} catch (IOException e) {
			// TODO Auto-generated catch block
			e.printStackTrace();
		}
	}

测试结果
a.txt
16


a.txt文件内容



评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值