package dd;


public class fibo {

public static void main(String args[]) {

int a = 0, b = 1, c = 0;

for (int i = 0; i < 10; i++) { // 10번 반복

a = b;

b = c;

c = a + b;

System.out.print(" " + c);

}

}

}

'JAVA > 자바' 카테고리의 다른 글

자바 메일보내기  (3) 2015.10.06
자바 팩토리얼  (0) 2015.09.10
자바 SQL 소스  (0) 2015.08.25
자바 Swing Jtable 에디터 사용안하기  (1) 2015.07.08
자바 inner 클래스 - anonymous inner 클래스  (0) 2015.07.06
블로그 이미지

왕왕왕왕

,

JSP Thumnail 처리

JAVA/JSP 2015. 8. 25. 17:43

<%@page import="javax.imageio.ImageIO"%>

<%@page import="java.awt.Graphics2D"%>

<%@page import="java.awt.image.BufferedImage"%>

<%@page import="javax.media.jai.JAI"%>

<%@page import="javax.media.jai.RenderedOp"%>

<%@page import="java.awt.image.renderable.ParameterBlock"%>

<%@page import="java.util.Enumeration"%>

<%@page import="com.oreilly.servlet.multipart.DefaultFileRenamePolicy"%>

<%@page import="com.oreilly.servlet.MultipartRequest"%>

<%@ page import="java.io.*"%>

<%@ page language="java" contentType="text/html; charset=EUC-KR"

pageEncoding="EUC-KR"%>

<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">

<html>

<head>

<meta http-equiv="Content-Type" content="text/html; charset=EUC-KR">

<title>Insert title here</title>

</head>

<body>

<%

String imagePath = request.getRealPath("image");


int size = 1 * 1024 * 1024;

String filename = "";


try {


MultipartRequest multi = new MultipartRequest(request, imagePath, size, "euc-kr",

new DefaultFileRenamePolicy());


Enumeration files = multi.getFileNames();


String file = (String) files.nextElement();

filename = multi.getFilesystemName(file);


} catch (Exception e) {

e.printStackTrace();

}


ParameterBlock pb = new ParameterBlock();

pb.add(imagePath + "/" + filename);

RenderedOp rOp = JAI.create("fileload", pb);

BufferedImage bi = rOp.getAsBufferedImage();

BufferedImage thumb = new BufferedImage(100, 100, BufferedImage.TYPE_INT_RGB);

Graphics2D g = thumb.createGraphics();

g.drawImage(bi, 0, 0, 100, 100, null);


File file = new File(imagePath + "/sm_" + filename);


ImageIO.write(thumb, "jpg", file);

%>



-원본 이미지-

<br>

<img src="image/<%=filename%>">

<p>

-썸네일 이미지-<br> <img src="image/sm_<%=filename%>">


</body>

</html>

블로그 이미지

왕왕왕왕

,


jai-1_1_3-lib.zip





첨부파일 다운로드하고

이클립스에 추가





'JAVA > JSP' 카테고리의 다른 글

jsp 차단된 콘텐츠 허용 코드  (0) 2016.08.29
JSP Thumnail 처리  (0) 2015.08.25
JSP Thumbnail 폼  (0) 2015.08.25
JSP 파일업로드 (업로드되는 디렉터리 & cos.jar 추가 및 다운로드)  (0) 2015.08.25
JSP 파일업로드 확인  (0) 2015.08.25
블로그 이미지

왕왕왕왕

,

JSP Thumbnail 폼

JAVA/JSP 2015. 8. 25. 17:15

<%@ page language="java" contentType="text/html; charset=EUC-KR"

pageEncoding="EUC-KR"%>

<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">

<html>

<head>

<meta http-equiv="Content-Type" content="text/html; charset=EUC-KR">

<title>Insert title here</title>

</head>

<body>

<center>

<form action="thumbnail.jsp" method="post" enctype="multipart/form-data">

이미지 파일 :<input type="file" name="filename"> <input

type="submit" value="전송">

</form>

</center>

</body>

</html>

블로그 이미지

왕왕왕왕

,


http://servlets.com/cos/

에서 cos-26Dec2008.zip 파일 받음


1.파일업로드 할때 파일이 저장될 디렉터리는 workspace경로부터 시작으로 작업프로젝트까지




2. file디렉터리안에 들어가면 upload라고 디렉터리 생성해놨다 실제 파일이 저장될 장소 준비완료



3.이클립에서 라이브러리 디렉터리에 cos.jar를 추가해준다.



'JAVA > JSP' 카테고리의 다른 글

JSP jai 라이브러리 다운 및 추가  (0) 2015.08.25
JSP Thumbnail 폼  (0) 2015.08.25
JSP 파일업로드 확인  (0) 2015.08.25
JSP 파일업로드 처리  (0) 2015.08.25
JSP 파일업로드 폼  (0) 2015.08.25
블로그 이미지

왕왕왕왕

,

<%@ page language="java" contentType="text/html; charset=EUC-KR"

pageEncoding="EUC-KR"%>

<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">

<html>

<head>

<meta http-equiv="Content-Type" content="text/html; charset=EUC-KR">

<title>Insert title here</title>

</head>

<body>

<%

request.setCharacterEncoding("euc-kr");

String name = request.getParameter("name");

String subject = request.getParameter("subject");

String filename1 = request.getParameter("filename1");

String filename2 = request.getParameter("filename2");

%>


올린사람:

<%=name%><br> 제목:

<%=subject%><br> 파일명1 :

<a href="upload/<%=filename1%>"><%=filename1%></a>

<br> 파일명2 :

<a href="upload/<%=filename2%>"><%=filename2%></a>

<br>

</body>

</html>

'JAVA > JSP' 카테고리의 다른 글

JSP Thumbnail 폼  (0) 2015.08.25
JSP 파일업로드 (업로드되는 디렉터리 & cos.jar 추가 및 다운로드)  (0) 2015.08.25
JSP 파일업로드 처리  (0) 2015.08.25
JSP 파일업로드 폼  (0) 2015.08.25
JSP 오라클 트랜잭션  (0) 2015.08.24
블로그 이미지

왕왕왕왕

,

<%@page import="java.util.Enumeration"%>

<%@page import="com.oreilly.servlet.multipart.DefaultFileRenamePolicy"%>

<%@page import="com.oreilly.servlet.MultipartRequest"%>

<%@ page language="java" contentType="text/html; charset=EUC-KR"

pageEncoding="EUC-KR"%>

<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">

<html>

<head>

<meta http-equiv="Content-Type" content="text/html; charset=EUC-KR">

<title>Insert title here</title>

</head>

<body>

<%

String uploadPath = request.getRealPath("upload");


int size = 10 * 1024 * 1024;

String name = "";

String subject = "";

String filename1 = "";

String filename2 = "";


try {

MultipartRequest multi = new MultipartRequest(request, uploadPath, size, "euc-kr",

new DefaultFileRenamePolicy());


name = multi.getParameter("name");

subject = multi.getParameter("subject");


Enumeration files = multi.getFileNames();


String file1 = (String) files.nextElement();

filename1 = multi.getFilesystemName(file1);

String file2 = (String) files.nextElement();

filename2 = multi.getFilesystemName(file2);


} catch (Exception e) {

e.printStackTrace();

}

%>


<form action="fileCheck.jsp" name="filecheck" method="post">

<input type="hidden" name="name" value="<%=name%>"> <input

type="hidden" name="subject" value="<%=subject%>"> <input

type="hidden" name="filename1" value="<%=filename1%>"> <input

type="hidden" name="filename2" value="<%=filename2%>">

</form>

<a href="#" onclick="javascript:filecheck.submit()"> 업로드 확인 및 다운로드

페이지 이동</a>

</body>

</html>

'JAVA > JSP' 카테고리의 다른 글

JSP 파일업로드 (업로드되는 디렉터리 & cos.jar 추가 및 다운로드)  (0) 2015.08.25
JSP 파일업로드 확인  (0) 2015.08.25
JSP 파일업로드 폼  (0) 2015.08.25
JSP 오라클 트랜잭션  (0) 2015.08.24
JSP 오라클 ResultSet  (0) 2015.08.24
블로그 이미지

왕왕왕왕

,

JSP 파일업로드 폼

JAVA/JSP 2015. 8. 25. 17:00

<%@ page language="java" contentType="text/html; charset=EUC-KR"%>

<html>

<head>

<title>FileUpload Form</title>

</head>

<body>

<center>

<form action="fileUpload.jsp" method="post" enctype="multipart/form-data">

<table border=1>

   <tr>

      <td colspan=2 align=center><h3>파일 업로드 폼</h3></td>

   <tr>

      <td>올린 사람 : </td><td><input type="text" name="name"></td><br>

   </tr>

   <tr>

      <td>제목 : </td><td><input type="text" name="subject"></td><br>

   </tr>

   <tr>

//타입이 file로하면 자동으로 구현됨

      <td>파일명1 : </td><td><input type="file" name="fileName1"></td><br>

   </tr>

   <tr>

      <td>파일명2 : </td><td><input type="file" name="fileName2"></td><p/>

   </tr>

   <tr>

      <td colspan=2 align=center><input type="submit" value="전송"></td>

   </tr>

</table>

</form>

</center>

</body>

</html>

'JAVA > JSP' 카테고리의 다른 글

JSP 파일업로드 확인  (0) 2015.08.25
JSP 파일업로드 처리  (0) 2015.08.25
JSP 오라클 트랜잭션  (0) 2015.08.24
JSP 오라클 ResultSet  (0) 2015.08.24
JSP 오라클 Statement  (0) 2015.08.21
블로그 이미지

왕왕왕왕

,