java 간단한 파일 입출력 질문

익명 사용자의 이미지

import java.io.FileOutputStream;
import java.io.FileInputStream;
import java.io.ObjectOutputStream;
import java.io.ObjectInputStream;
import java.io.IOException;
import java.io.Serializable;
 
 
public class Point implements Serializable{
	private double x;
	private double y;
 
	public Point(double x, double y) {
		this.x = x;
		this.y = y;
	}
 
	public void setX(double x) {
		this.x = x;
	}
 
	public void setY(double y) {
		this.y = y;
	}
 
	public double getX() {
		return x;
	}
 
	public double getY() {
		return y;
	}
 
	public static Point loadPoint(String fileName) {
		ObjectInputStream inputStream = null;
		try {
			inputStream = new ObjectInputStream(new FileInputStream(fileName));			
		}
		catch(IOException e) {
			System.out.println("Error opening input file "+fileName+".");
			System.exit(0);
		}
		Point readOne = null;
		try {
			readOne = (Point)inputStream.readObject();			
			inputStream.close();
		}
		catch (IOException e) {
			System.out.println("Error reading from file "+fileName+".");
			System.exit(0);
		}
 
		return readOne;
	}
 
	public static void savePoint(String fileName, Point pt) {
		ObjectOutputStream outputStream = null;
		try {
			outputStream = new ObjectOutputStream(new FileOutputStream (fileName));			 	
		}		
		catch (IOException e) {
			System.out.println("Error opening file " + fileName + ".");
			System.exit(0);			
		}
		try {
			outputStream.writeObject(pt);
			outputStream.close();
		}
		catch (IOException e) {
			System.out.println("Error writing to file " + fileName + ".");
			System.exit(0);			
		}
 
 
	}
 
	public double distance(Point pt) {
		return Math.sqrt(Math.pow(pt.getX() - x, 2.0) + Math.pow(pt.getY() - y, 2.0));
	}
 
	public static void main(String[] args) {		 
		 Point a = new Point(1, 2);
		 System.out.println();
	 Point.savePoint("a.pt", a);
 
		 Point.loadPoint("a.pt");
//		 System.out.println(b.getX());
	}
 
}

이코드에서 readOne = (Point)inputStream.readObject(); 이부분이 계속 에러가 뜹니다
에러는 classNotFoundException 이라고 뜨네요 ㅠ 이유가 뭘까요

emptynote의 이미지

예외의 경우 크게 두가지가 있습니다.

첫번째 일반예외 : 문법적으로 예외 처리를 강제 합니다.
두번째 런타임 예외 : 실생시 발생하는 예외로 문법적으로 예외 처리를 강제 하지 않습니다.

더 자세한 내용은 아래 참고 주소를 참고하세요.

그리고 덧붙여서

(1) 자바의 경우 자원 해제는 try {} finally {} 구문입니다.

저 같으면 아래와 같이 처리를 하겠습니다.

public static void savePoint(String fileName, Point pt) {
		ObjectOutputStream outputStream = null;
		try {
			outputStream = new ObjectOutputStream(new FileOutputStream(fileName));
		} catch (Exception e) {
			System.out.println("Error opening file " + fileName + ".");
			System.exit(0);
		}
 
 
		try {
			outputStream.writeObject(pt);			
		} catch (Exception e) {
			System.out.println("Error writing to file " + fileName + ".");
			System.exit(0);
		} finally {
			try {
				outputStream.close();
			} catch (Exception e) {
			}
		}
 
	}

(2) 에러나 예외 발생시 에러 사유를 로그에 남기면 좋겠죠. 또 에러가 발생한 장소를 추적하게 해 주는 e.printStackTrace()도 남기면 좋습니다. 단 에러가 발생한 장소 추적은 비용이 많이 들기때문에 사용에 신중을 기해야 합니다.

-----------
예외 종류 설명 관련 참고 주소 : https://deftkang.tistory.com/44

댓글 달기

Filtered HTML

  • 텍스트에 BBCode 태그를 사용할 수 있습니다. URL은 자동으로 링크 됩니다.
  • 사용할 수 있는 HTML 태그: <p><div><span><br><a><em><strong><del><ins><b><i><u><s><pre><code><cite><blockquote><ul><ol><li><dl><dt><dd><table><tr><td><th><thead><tbody><h1><h2><h3><h4><h5><h6><img><embed><object><param><hr>
  • 다음 태그를 이용하여 소스 코드 구문 강조를 할 수 있습니다: <code>, <blockcode>, <apache>, <applescript>, <autoconf>, <awk>, <bash>, <c>, <cpp>, <css>, <diff>, <drupal5>, <drupal6>, <gdb>, <html>, <html5>, <java>, <javascript>, <ldif>, <lua>, <make>, <mysql>, <perl>, <perl6>, <php>, <pgsql>, <proftpd>, <python>, <reg>, <spec>, <ruby>. 지원하는 태그 형식: <foo>, [foo].
  • web 주소와/이메일 주소를 클릭할 수 있는 링크로 자동으로 바꿉니다.

BBCode

  • 텍스트에 BBCode 태그를 사용할 수 있습니다. URL은 자동으로 링크 됩니다.
  • 다음 태그를 이용하여 소스 코드 구문 강조를 할 수 있습니다: <code>, <blockcode>, <apache>, <applescript>, <autoconf>, <awk>, <bash>, <c>, <cpp>, <css>, <diff>, <drupal5>, <drupal6>, <gdb>, <html>, <html5>, <java>, <javascript>, <ldif>, <lua>, <make>, <mysql>, <perl>, <perl6>, <php>, <pgsql>, <proftpd>, <python>, <reg>, <spec>, <ruby>. 지원하는 태그 형식: <foo>, [foo].
  • 사용할 수 있는 HTML 태그: <p><div><span><br><a><em><strong><del><ins><b><i><u><s><pre><code><cite><blockquote><ul><ol><li><dl><dt><dd><table><tr><td><th><thead><tbody><h1><h2><h3><h4><h5><h6><img><embed><object><param>
  • web 주소와/이메일 주소를 클릭할 수 있는 링크로 자동으로 바꿉니다.

Textile

  • 다음 태그를 이용하여 소스 코드 구문 강조를 할 수 있습니다: <code>, <blockcode>, <apache>, <applescript>, <autoconf>, <awk>, <bash>, <c>, <cpp>, <css>, <diff>, <drupal5>, <drupal6>, <gdb>, <html>, <html5>, <java>, <javascript>, <ldif>, <lua>, <make>, <mysql>, <perl>, <perl6>, <php>, <pgsql>, <proftpd>, <python>, <reg>, <spec>, <ruby>. 지원하는 태그 형식: <foo>, [foo].
  • You can use Textile markup to format text.
  • 사용할 수 있는 HTML 태그: <p><div><span><br><a><em><strong><del><ins><b><i><u><s><pre><code><cite><blockquote><ul><ol><li><dl><dt><dd><table><tr><td><th><thead><tbody><h1><h2><h3><h4><h5><h6><img><embed><object><param><hr>

Markdown

  • 다음 태그를 이용하여 소스 코드 구문 강조를 할 수 있습니다: <code>, <blockcode>, <apache>, <applescript>, <autoconf>, <awk>, <bash>, <c>, <cpp>, <css>, <diff>, <drupal5>, <drupal6>, <gdb>, <html>, <html5>, <java>, <javascript>, <ldif>, <lua>, <make>, <mysql>, <perl>, <perl6>, <php>, <pgsql>, <proftpd>, <python>, <reg>, <spec>, <ruby>. 지원하는 태그 형식: <foo>, [foo].
  • Quick Tips:
    • Two or more spaces at a line's end = Line break
    • Double returns = Paragraph
    • *Single asterisks* or _single underscores_ = Emphasis
    • **Double** or __double__ = Strong
    • This is [a link](http://the.link.example.com "The optional title text")
    For complete details on the Markdown syntax, see the Markdown documentation and Markdown Extra documentation for tables, footnotes, and more.
  • web 주소와/이메일 주소를 클릭할 수 있는 링크로 자동으로 바꿉니다.
  • 사용할 수 있는 HTML 태그: <p><div><span><br><a><em><strong><del><ins><b><i><u><s><pre><code><cite><blockquote><ul><ol><li><dl><dt><dd><table><tr><td><th><thead><tbody><h1><h2><h3><h4><h5><h6><img><embed><object><param><hr>

Plain text

  • HTML 태그를 사용할 수 없습니다.
  • web 주소와/이메일 주소를 클릭할 수 있는 링크로 자동으로 바꿉니다.
  • 줄과 단락은 자동으로 분리됩니다.
댓글 첨부 파일
이 댓글에 이미지나 파일을 업로드 합니다.
파일 크기는 8 MB보다 작아야 합니다.
허용할 파일 형식: txt pdf doc xls gif jpg jpeg mp3 png rar zip.
CAPTCHA
이것은 자동으로 스팸을 올리는 것을 막기 위해서 제공됩니다.