• 大小: 30.77MB
    文件类型: .zip
    金币: 1
    下载: 0 次
    发布日期: 2023-07-16
  • 语言: Java
  • 标签: 旅游网站  JSP  MYSQL  

资源简介

java旅游网站,mvc模式,功能不是很完善,参考别的代码自己修改了一下,有需要的可以参考一下,和之前上传的毕业论文是对应的

资源截图

代码片段和文件信息

package com.Alone.Travel.BEAN;

import java.awt.Color;
import java.awt.Font;
import java.awt.Graphics;
import java.awt.image.BufferedImage;
import java.util.Random;

public class Image {
public String sRand = ““;

public Color getRandomColor(int fc int bc) {
Random random = new Random();

if (fc > 255)
fc = 255;
if (bc > 255)
bc = 255;

// 设置颜色
int r = fc + random.nextInt(bc - fc);
int g = fc + random.nextInt(bc - fc);
int b = fc + random.nextInt(bc - fc);

return new Color(r g b);
}

public BufferedImage createImage() {
int width = 60;
int height = 20;
BufferedImage image = new BufferedImage(width height
BufferedImage.TYPE_INT_RGB);

Graphics g = image.getGraphics();

Random random = new Random();

g.setColor(getRandomColor(200 250));

// 画矩形
g.fillRect(0 0 width height);

// 设置字体

g.setFont(new Font(“宋体“ Font.PLAIN 18));

// 产生干扰线

g.setColor(getRandomColor(160 200));

for (int i = 0; i < 155; i++) {
int x = random.nextInt(width);
int y = random.nextInt(height);
int xl = random.nextInt(12);
int yl = random.nextInt(12);
g.drawLine(x y x + xl y + yl);
}
// 取随机产生的认证码(4 位数字)
// String sRand=““;
for (int i = 0; i < 4; i++) {
String rand = String.valueOf(random.nextInt(10));
sRand += rand;
g.setColor(new Color(20 + random.nextInt(110) 20 + random
.nextInt(110) 20 + random.nextInt(110)));
g.drawString(rand 13 * i + 6 16);
}
g.dispose();

return image;
}
}

 属性            大小     日期    时间   名称
----------- ---------  ---------- -----  ----
     文件        9940  2016-12-20 21:35  travel.sql
     目录           0  2016-04-12 16:46  Travel\
     文件         693  2016-04-12 16:47  Travel\.classpath
     目录           0  2016-12-20 21:31  Travel\.myeclipse\
     文件         291  2016-04-12 16:47  Travel\.mymetadata
     文件        1749  2016-04-12 16:47  Travel\.project
     目录           0  2016-05-19 21:22  Travel\.settings\
     文件         500  2012-04-18 11:05  Travel\.settings\.jsdtscope
     文件          97  2016-05-19 21:22  Travel\.settings\org.eclipse.core.resources.prefs
     文件         395  2016-04-12 16:47  Travel\.settings\org.eclipse.jdt.core.prefs
     文件         456  2016-04-12 16:47  Travel\.settings\org.eclipse.wst.common.component
     文件         252  2016-04-12 16:47  Travel\.settings\org.eclipse.wst.common.project.facet.core.xml
     文件          49  2016-04-12 16:47  Travel\.settings\org.eclipse.wst.jsdt.ui.superType.container
     文件           6  2016-04-12 16:47  Travel\.settings\org.eclipse.wst.jsdt.ui.superType.name
     目录           0  2016-05-19 21:19  Travel\WebRoot\
     文件        4167  2016-04-18 13:41  Travel\WebRoot\AboutUs.html
     文件        3995  2016-04-19 15:19  Travel\WebRoot\English.html
     目录           0  2016-04-12 16:46  Travel\WebRoot\meta-INF\
     文件          36  2012-04-18 11:05  Travel\WebRoot\meta-INF\MANIFEST.MF
     文件        5144  2016-04-18 13:47  Travel\WebRoot\Mainchat.jsp
     文件        1556  2012-05-12 21:42  Travel\WebRoot\NotFount.jsp
     目录           0  2016-04-12 16:46  Travel\WebRoot\style\
     文件        1900  2012-05-21 10:43  Travel\WebRoot\style\bbsindexs.css
     文件         139  2012-05-14 11:44  Travel\WebRoot\style\bbsmsg.css
     文件        2923  2012-04-25 20:13  Travel\WebRoot\style\bbsstyle.css
     文件         108  2012-05-02 11:27  Travel\WebRoot\style\copy.css
     文件        2316  2012-05-23 11:39  Travel\WebRoot\style\index.css
     文件         679  2012-05-16 11:54  Travel\WebRoot\style\login.css
     文件         268  2012-05-09 09:45  Travel\WebRoot\style\reg.css
     文件        2923  2012-04-25 20:13  Travel\WebRoot\style\style.css
     文件        7046  2016-04-18 13:51  Travel\WebRoot\UserInfo.jsp
............此处省略175个文件信息

评论

共有 条评论