에러내용App.java:15: error: unmappable character (0x8C) for encoding x-windows-949 System.out.println("? ? ? ?"); 위 내용으로 작성한 자바 코드 실행 시 한글이 깨지며 에러가 발생했다.인코딩 문제인 듯 하지만 쉽게 해결할 수 있었다. 나의 경우는 확장팩인 Code Runner가 설치되어 있어, 우클릭 후 Run Code 혹은 우측상단의 Run Code 버튼을 눌러서 실행했다.해결했던 방법은 Code Runner의 기능이 아닌 Java Extension 설치 시 뜨는 Run | Debug를 사용하여 해결되었다.
파일 내용 복사하기 FileInputStream, FileOutputStream - 파일 내용 복사 자바 프로그램 import java.io.*; public class Copy2 { public static void main(String[] args) throws Exception{ FileInputStream fs=new FileInputStream("./src/파일명"); FileOutputStream fw=new FileOutputStream("abc2.txt", true); while(true) { int c=fs.read(); if(c==-1) break; fw.write(c); }//while System.out.println("ok"); fs.close();fw.close(); }//mai..
파일 내용 복사하기 FileReader, FileWriter - 파일 내용 복사 자바 프로그램 import java.io.*; public class Copy1 { public static void main(String[] args){ try { FileReader fs=new FileReader("./src/파일명"); FileWriter fw=new FileWriter("abc.txt"); while(true) { int c=fs.read(); if(c==-1) break; fw.write(c); }//while System.out.println("ok"); fs.close();fw.close(); }catch(Exception e) { e.printStackTrace(); }//while }//ma..
날짜, 시간 출력하기 SimpleDateFormat - 날짜, 시간 출력 자바 프로그램 import java.util.Date; import java.text.SimpleDateFormat; public class C3 { public static void main(String[] args) { Date now=new Date(); SimpleDateFormat s1=new SimpleDateFormat("yyyy-MM-dd"); System.out.println(s1.format(now)); SimpleDateFormat s2=new SimpleDateFormat("h:mm a"); System.out.println(s2.format(now)); SimpleDateFormat s3=new SimpleD..
실시간 날짜, 시간 출력 하기 Calendar - 실시간으로 날짜와 시간(초 까지) 출력하는 자바 프로그램 import java.util.*; public class C1 { public static void main(String[] args) throws Exception { for (int i = 0; i < 10; i++) { Thread.sleep(1000); Calendar now = Calendar.getInstance(); System.out.println(now); System.out.print(now.get(Calendar.YEAR) + "년"); System.out.print(now.get(Calendar.MONTH) + 1 + "월"); System.out.print(now.get(C..
Mysql 설치 후 Java와 연결하기 (Mysql과 Java 연결 확인 코드 첨부) Mysql 설치 및 Java 연결 확인 https://dev.mysql.com/downloads/windows/installer/8.0.html : 439.6M 다운받음 C:\Program Files (x86)\MySQL\Connector J 8.0 : mysql-connector-java-8.0.29.jar 를 자바 폴더로 옮김 사용할 Schema 생성 - Workbench 로그인 - File - Connect Server 클릭 (혹은 아래 사진 참고) Java 연결 - 프로젝트 우클릭 - properties - Java Build Path - .옮겨두었던 mysql-connector-java-8.0.29.jar 파일..