<head>
	<link rel="shortcut icon" type="image⁄x-icon" href="아이콘 파일 주소">
<⁄head>

블로그 이미지

행복그리고..

,
블로그 이미지

행복그리고..

,
import java.io.File;

class FileLibrary {
	public static void makeFile(String path) {
		File file = new File(path);
		if (file.exists() == false) {
			new File(file.getParentFile().getPath()).mkdirs();
			try {
				file.createNewFile();
			} catch (Exception e) {
				e.printStackTrace();
			}
		}
	}
}

블로그 이미지

행복그리고..

,