반응형
자바 인쇄 기능 예제 #1
문자열 변수에 들어있는 데이터를 소스코드가 있는 위치에 메모장으로 저장한 다음 다시 읽어들여 출력하는 예제입니다.
try{
String txt = "(적을 내용)";
String pathF = System.getProperty("user.dir") + "/txt.txt";
File file = new File(pathF) ;
FileWriter filewriter = new FileWriter(file, false) ;
filewriter.write(txt);
filewriter.flush();
filewriter.close();
JEditorPane text = new JEditorPane("file:///" + pathF);
text.print(null, null, true, null, null, false);
}catch(Exception txt_e){
txt_e.printStackTrace();
JOptionPane.showMessageDialog(null, txt_e);
}
|
cs |
인쇄 부분 ↓
JEditorPane text = new JEditorPane("file:///" + pathF);
text.print(null, null, true, null, null, false);
실행을 하면 이런 화면이 나옵니다. ↓
출력 결과 ↓
반응형
'Programming > Java' 카테고리의 다른 글
[Java] 버튼을 누르면 창 전환하기 / 자바 GUI/Swing 예제 (1) | 2021.02.28 |
---|---|
[Java] 종료 버튼 만들기 (버튼을 누르면 프로그램 종료) 예제 /GUI (0) | 2021.02.26 |
[Java] 자바 주석 / 종류 (1) | 2021.02.16 |
[Java] BoxLayout / 예제 #1 GUI (0) | 2021.02.15 |
[Java] 경로 파일명에서 파일 확장자만 가져오기/ 소스 코드 (0) | 2021.02.10 |
댓글