[ java ] in KIDS 글 쓴 이(By): juyup (이지훈) 날 짜 (Date): 1998년 5월 24일 일요일 오후 01시 28분 06초 제 목(Title): [버그를 찾아주세요] 다른데다 포스팅 했는데 아무도 리를 안달아주네요.. 애플릿 디버깅시 다음과 같은 에러가 났는데 도저히 모르겠네요.. Breakpoint hit: LoginFrame.IsAuthenticated (LoginFrame:30) AWT-Dispatch-Proxy[1] list 26 // String dirPath="/eve/u1/ezup0/course/cs441/project/entrance/loginfile"; 27 // String filePath="loginfile"; 28 // File inFile = new File(LoginFrame.dirPath, LoginFrame.filePath); 29 //FileInputStream is = null; 30 => String finalPath = dirPath + filePath; 31 InputStream is = new FileInputStream(finalPath); 32 // try{ 33 // is = new FileInputStream(LoginFile); 34 // is = new FileInputStream("/eve/u1/ezup0/course/cs441/project/entrance/loginfile"); AWT-Dispatch-Proxy[1] step AWT-Dispatch-Proxy[1] Breakpoint hit: java.io.FileInputStream.<init> (pc 0) 즉 위에서 31라인에서 is = new FileInputStream(LoginFile);에서 reakpoint hit: java.io.FileInputStream.<init> (pc 0) 이라는 에러가 나는데요..몰 잘못한거죠? |