728x90
String[] orderno=new String[100]; //배열 선언
int ordercnt=0;
StringTokenizer st=new StringTokenizer(value2,","); //value2 값을 , 기준으로 자른다
while(st.hasMoreTokens()){ //token으로 자를 string이 남아있는동안
orderno[ordercnt]=st.nextToken(); //주문번호에 자른 token값을 넣는다
ordercnt++;
}

String path="d:/APP/"+value1+".html"; //path 설정
FileWriter file=new FileWriter(path); //FileWriter을 선언한다
file.write("<html><head><title>"+value1+"); //file 에 쓴다

file.close(); //file을 닫는다

* dobule quotention이랑 single quotention 을 중복해서 사용 할 경우 3단 quotention일 때

\" 이렇게 사용하면 섞어사용 할 수 있다.

try{
PreparedStatement pstmt=conn.prepareStatement(sql);
for(int i=0;i<ordercnt;i++){
pstmt.setString(1,orderno[i]);
rs=pstmt.executeQuery();
rs.next();

//ordercnt 동안 쿼리를 수행한다. 이부분에다 작업하면됨

}

}

 

728x90

'JAVA' 카테고리의 다른 글

class is not accessible due to restriction error 해결  (0) 2012.07.29
JSP에서 HTML 생성하기  (0) 2012.07.29
정규식 regular expression  (0) 2012.07.29
한글문제  (0) 2012.07.29
JavaScript 키코드  (0) 2012.07.29

+ Recent posts