프로그래밍(32)
-
color선택(마우스클릭) 후 같은 color로 배경화면바꾸기
좋아하는 색 빨강 주황 노랑 초록 파랑 남색 보라 좋아하는 색 목록을 color.html로 만든다public class Color extends HttpServlet {private static final long serialVersionUID = 1L; protected void doGet(HttpServletRequest request, HttpServletResponse response) throws ServletException, IOException { String color=request.getParameter("color"); PrintWriter out = response.getWriter(); out.println(""); out.println(""); out.close(); } java..
2016.08.29 -
자바 arrayList 사용
자바 리스트를 이해하기 위한 코딩 내용 public static void main(String[] args) {ArrayList list = new ArrayList();int a = 0;for(int i=0; i
2016.08.28