JAVA 가 외부 자원 을 읽 는 방법

자바 코드 에 서 는 외부 자원 을 읽 어 달 라 는 요구 가 자주 있 습 니 다. 예 를 들 어 프로필 등 은 보통 classpath 에 설정 파일 을 두 거나 웹 프로젝트 에 웹 - inf 에 두 는 경우 가 많 습 니 다.
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 () 가 다 르 기 때문에 찾 는 경로 가 다 릅 니 다.

좋은 웹페이지 즐겨찾기