2018/11/19 3

java - 이메일 보내기 자바코드, GUI 이메일 보내기 코드 (JFrame), 웹페이지에서 이메일 보내기

package com.example.email; import org.apache.commons.mail.EmailException;import org.apache.commons.mail.SimpleEmail; public class SimpleEmailExample { public static void main(String[] args) {// 메일 전송기능 라이브러리 준비// CommonsEmail// http://commons.apache.org/proper/commons-email// ▶ commons-email-1.2.jar// JavaMail// http://javaee.github.io/javamail// ▶ mail.jar// JAF(java activation framework)// ▶ a..

IT/Java 2018.11.19

jQuery - 구글 차트 GoogleChart

DOCTYPE html> 구글 차트 div { float: left; } // https://www.tutorialspoint.com/googlecharts/ // 구글 시각화 API를 로딩하는 메소드 google.charts.load('current', {packages: ['corechart']}); // 구글 시각화 API가 로딩이 완료되면, // 인자로 전달된 콜백함수를 내부적으로 호출하여 차트를 그리는 메소드 google.charts.setOnLoadCallback(drawChart); function drawChart() { columnChart1(); columnChart2(); stackedColumnChart1(); stackedColumnChart2(); lineChart1(); lin..

IT/jQuery 2018.11.19