이클립스에서 프로젝트를 실행시키는데 에러가 났다. 분명 다른 노트북에서는 잘 돌아가는 소스인데...원인은 바로.. Caused by: java.lang.NoClassDefFoundError: org/w3c/dom/ElementTraversal at java.lang.ClassLoader.defineClass1(Native Method) at java.lang.ClassLoader.defineClass(Unknown Source) at java.security.SecureClassLoader.defineClass(Unknown Source) at java.net.URLClassLoader.defineClass(Unknown Source) at java.net.URLClassLoader.access$100(..
http://itextpdf.com/ 현재 최신버전 : 5.1.0 iText 기능 Supported by iText Partly supported by iText PDF 생성하기 public void createPdf(String filename) throws DocumentException, IOException { // step 1 Document document = new Document(); // step 2 PdfWriter.getInstance(document, new FileOutputStream(filename)); // step 3 document.open(); // step 4 document.add(new Paragraph("Hello World!")); // step 5 docume..
The char data type (and therefore the value that a Character object encapsulates) are based on the original Unicode specification, which defined characters as fixed-width 16-bit entities. The Unicode standard has since been changed to allow for characters whose representation requires more than 16 bits. The range of legal code points is now U+0000 to U+10FFFF, known as Unicode scalar value. (Ref..
쓰레드란? 하나의 프로세스안에서 쪼개진 태스크이다. 행위중심 같은 메모리를 공유 왜 run이 아니라 start로 실행하나? OS가 스케줄링하여 run을 호출하기 때문이다. 자바의 쓰레드 사용법 2가지 extends java.lang.Thread (Thread 클래스를 상속받거나) implements java.lang.Runnable (Runnable 인터페이스를 구현하거나) 왜? 자바는 다중상속이 불가능하다. 따라서 이미 상속받은 클래스를 쓰레드화 시커야 할 때 인터페이스를 사용한다. Thread 클래스를 상속받아 구현하기 class ThreadTest extends Thread { public ThreadTest(String name) { super(name); // Thread 에 이름을 부여하여 생..