728x90
반응형
가끔 찾아보기가 귀찮아서.. ㅡㅡ;
- try {
- BufferedReader in = new BufferedReader(new FileReader("src/input"));
- String s;
- while ((s = in.readLine()) != null) {
- System.out.println(s);
- }
- in.close();
- } catch (IOException e) {
- System.err.println(e);
- System.exit(1);
- }
- }
728x90
반응형
'Development > Java' 카테고리의 다른 글
Deep Copy vs Shallow Copy (0) | 2013.02.12 |
---|---|
객체에는 메서드가 포함되지 않는다? (0) | 2013.02.12 |
[Spring]Spring Annotation (0) | 2012.08.01 |
[Spring]SpEL(Spring Expression Language) (0) | 2012.07.31 |
[Spring]Autowiring (0) | 2012.05.03 |