JAVA 가 외부 자원 을 읽 는 방법
1. 현재 작업 디 렉 터 리 에서 읽 기:
try {
BufferedReader in = new BufferedReader(new InputStreamReader(new FileInputStream("wkdir.txt")));
String str;
while ((str = in.readLine()) != null) {
System.out.println(str);
}
in.close();
} catch (IOException e) {
}
2. classpath 에서 읽 기 (찾 은 첫 번 째 이름 에 맞 는 파일 읽 기):
try {
InputStream stream = ClassLoader.getSystemResourceAsStream("fileinjar.txt");
BufferedReader in = new BufferedReader(new InputStreamReader(stream));
String str;
while ((str = in.readLine()) != null) {
System.out.println(str);
}
in.close();
} catch (IOException e) {
}
3. classpath 에서 읽 기 (스프링 에 classpath *: 접두사 가 있 는 경우 classpath 에서 찾 은 모든 이름 에 맞 는 파일 을 읽 습 니 다):
try {
Enumeration resourceUrls = Thread.currentThread().getContextClassLoader().getResources("fileinjar.txt");
while (resourceUrls.hasMoreElements()) {
URL url = (URL) resourceUrls.nextElement();
System.out.println(url);
BufferedReader in = new BufferedReader(new InputStreamReader(url.openStream()));
String str;
while ((str = in.readLine()) != null) {
System.out.println(str);
}
in.close();
}
} catch (IOException e) {
}
4, URL 에서 읽 기:
try {
URL url = new URL("http://blog.csdn.net/kkdelta");
System.out.println(url);
BufferedReader in = new BufferedReader(new InputStreamReader(url.openStream()));
String str;
while ((str = in.readLine()) != null) {
System.out.println(str);
}
in.close();
} catch (IOException e) {
e.printStackTrace();
}
5. 웹 프로젝트 는 웹 - inf 폴 더 에서 읽 습 니 다 (ServletContext 를 통 해 읽 을 수 있 으 며 servlet 또는 request 를 받 을 수 있 는 클래스 에서 사용 할 수 있 습 니 다).
try {
URL url = (URL) getServletContext().getResource("/WEB-INF/webinffile.txt");
// URL url = (URL)req.getSession().getServletContext().getResource("/WEB-INF/webinffile.txt");
System.out.println(url);
BufferedReader in = new BufferedReader(new InputStreamReader(url.openStream()));
String str;
while ((str = in.readLine()) != null) {
System.out.println(str);
}
in.close();
} catch (IOException e) {
e.printStackTrace();
}
이 코드 는 eclipse 환경 에서 테스트 를 실 행 했 습 니 다. 그러나 최근 JUnit 을 사용 할 때 ant 를 통 해 JUnit 을 실행 할 때 ClassLoader. getSystem ResourceAsStream ("file. txt") 을 통 해 실 행 했 습 니 다.파일 을 찾 을 수 없습니다. Xclass. class. getClassLoader (). getResourceAsStream ("file. txt") 로 변경 합 니 다.ant 가 지정 한 classpath 에서 파일 을 찾 을 수 있 습 니 다. ClassLoader 와 Xclass. class. getClassLoader () 가 다 르 기 때문에 찾 는 경로 가 다 릅 니 다.
이 내용에 흥미가 있습니까?
현재 기사가 여러분의 문제를 해결하지 못하는 경우 AI 엔진은 머신러닝 분석(스마트 모델이 방금 만들어져 부정확한 경우가 있을 수 있음)을 통해 가장 유사한 기사를 추천합니다:
Is Eclipse IDE dying?In 2014 the Eclipse IDE is the leading development environment for Java with a market share of approximately 65%. but ac...
텍스트를 자유롭게 공유하거나 복사할 수 있습니다.하지만 이 문서의 URL은 참조 URL로 남겨 두십시오.
CC BY-SA 2.5, CC BY-SA 3.0 및 CC BY-SA 4.0에 따라 라이센스가 부여됩니다.