차근차근/JAVA JSP

무작정 자료 수집

예쁜꽃이피었으면 2014. 7. 30. 10:24

http://aha.zum.com/view/16yz1m-jsp에서 java소스 실행 하고싶다~

<%@ page language="java" contentType="text/html; charset=UTF-8" pageEncoding="UTF-8"%>
<!-- 사용할 클래스의 패키지를 명시해줌 -->
<%@ page import="java.util.Date"%>
<%
// 사용하려는 클래스의 인스턴스를 생성해줌니다.
Date dt = new Date();
// 사용하려는 클래스의 내부 함수를 실행해서 값을 얻어와
// 변수에 적용 합니다.
String today = dt.toString();
%>
<html>
<head>
<meta http-equiv='Content-Type' content='text/html; charset=utf-8' />
<title> sjisbmoc </title>
</head>
<body>

적용된 변수의 값을 화면에 출력해 줍니다.
<%=today%>

</body>
</html>
============================================================================

http://second27.tistory.com/133 -java에서 http로 요청 보내기:post데이터요청

 

 

http://blog.naver.com/PostView.nhn?blogId=musasin84&logNo=60193890045&categoryNo=37&parentCategoryNo=0&viewDate=&currentPage=8&postListTopCurrentPage=1&userTopListOpen=true&userTopListCount=5&userTopListManageOpen=false&userTopListCurrentPage=8

jsp게시판 만들기

 

 

========================================================================

http://kscho.tistory.com/entry/%EC%A4%91%EC%9A%94%EA%B8%B0%EC%88%A0%EC%9A%94%EC%95%BD-ArrayList-LinkedList-HashMap-%EC%84%B1%EB%8A%A5-%EB%B0%8F-%EC%82%AC%EC%9A%A9%EB%B2%95-[중요:기술요약] ArrayList, LinkedList, HashMap 성능 및 사용법

배열 뭘 써야 할까

 

http://son84.egloos.com/382136

 

http://kumbange.tistory.com/category/%EC%9E%90%EB%B0%94

해쉬 맵에서 특정 값 꺼내는거 찾아보려다가 이런말을 봤다.

hashmap은 멀티쓰레드 환경에서 사용하면 안된다.

여러개의 쓰레드가 동시에 hashmap을건드려서 key,value를 써넣게 되면 문제가 발생할수있다.

멀티쓰레드 프로그래밍 환경에서는 hashmap말고 hashtable을 쓰자.

또,단일 쓰레드 환경에서 hashtable을 쓰더라도 별 문제는 없는데 ,hashmap보다는 성능이 저하될 수 있다.

 

 

http://bboong100.tistory.com/9

해시맵의 출력방법
HashMap hashmap = new HashMap();
hashmap.put("jakarta", "project");
hashmap.put("apache", "tomcat");
 
Set set = hashmap.entrySet();
Iterator keys = set.iterator();
while (keys.hasNext())
{
   key = (String)keys.next();
   System.out.println(hashmap.get(key));
}

 

 

 

특정키값!가져오기예제

import java.util.*;

public class HashMapTest {
    public static void main(String args[]) {
        HashMao hm = new HashMap();
        hm.put("1", "one");
        hm.put("2", "two");
        hm.put("3", "three");
        hm.put("4", "tour");


        Iterator ir = hm.keySet().iterator(); //hashmap의 모든 key값을 Iterator객체에 담는다.
        while (ir.hasNext()) {
            String key = (String) ir.next(); //하나씩 key값을 가져온다. 여기서 특정 key값과 비교하려면
            //   if(key.equals("특정key값"){}//이렇게 비교해서 매칭되는 것만 출력하든지..뭐..처리
            String value = (String) hm.get(key); //그 키값으로 hashmap의값을 가져온다
            System.out.println("key=" + key + ",value=" + value);
            //System.out.println("");
            //System.out.println(ir);
        }
    }


}

 

해쉬맵에서 키값 하나에 밸류값 여러개 괜찮나?

- http://jiq0711.tistory.com/21

- http://dreamchallenger.blogspot.kr/2014/04/java-hashmap.html

 된다 value에 다시 배열을 넣어도 되는듯 싶다.

 

 

 

iterator  이건또뭔가..

http://iilii.egloos.com/3788564

 

HasNext()

http://blog.daum.net/pjmtodn/1499107

 

 

반응형