More actions
imported>novaman No edit summary |
imported>novaman No edit summary |
||
| Line 17: | Line 17: | ||
} | } | ||
} | } | ||
// notepad++ 에서 UTF8(BOM 없음) 선택후 다음과 같이 cmd에서 컴파일 | |||
javac -encoding utf8 ByteCode.java | |||
imported>novaman No edit summary |
imported>novaman No edit summary |
||
| Line 17: | Line 17: | ||
} | } | ||
} | } | ||
// notepad++ 에서 UTF8(BOM 없음) 선택후 다음과 같이 cmd에서 컴파일 | |||
javac -encoding utf8 ByteCode.java | |||
public class ByteCode{
public ByteCode() {
System.out.println("hello");
}
public void methodOperandStack(){
int a, b, c;
a = 5;
b = 1;
c = a + b;
}
}
// notepad++ 에서 UTF8(BOM 없음) 선택후 다음과 같이 cmd에서 컴파일 javac -encoding utf8 ByteCode.java