• 大小: 71.74MB
    文件类型: .zip
    金币: 1
    下载: 0 次
    发布日期: 2022-05-28
  • 语言: Java
  • 标签: java  毕业设计  

资源简介

旅游资源管理_jsp.zip

资源截图

代码片段和文件信息

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;
}
}

 属性            大小     日期    时间   名称
----------- ---------  ---------- -----  ----
     目录           0  2019-10-07 14:28  旅游资源管理_jsp\
     目录           0  2019-10-07 13:37  旅游资源管理_jsp\Travel\
     文件         693  2016-04-12 16:47  旅游资源管理_jsp\Travel\.classpath
     目录           0  2019-10-07 13:37  旅游资源管理_jsp\Travel\.idea\
     目录           0  2019-10-07 13:37  旅游资源管理_jsp\Travel\.idea\artifacts\
     文件         770  2019-08-21 15:20  旅游资源管理_jsp\Travel\.idea\artifacts\Travel_war_exploded.xml
     文件         624  2019-08-21 15:16  旅游资源管理_jsp\Travel\.idea\checkstyle-idea.xml
     文件         260  2019-08-21 15:20  旅游资源管理_jsp\Travel\.idea\encodings.xml
     目录           0  2019-10-07 13:37  旅游资源管理_jsp\Travel\.idea\inspectionProfiles\
     文件        1444  2019-08-21 15:16  旅游资源管理_jsp\Travel\.idea\inspectionProfiles\Project_Default.xml
     文件         279  2019-08-21 15:20  旅游资源管理_jsp\Travel\.idea\misc.xml
     文件         259  2019-08-21 15:16  旅游资源管理_jsp\Travel\.idea\modules.xml
     文件       31026  2019-10-07 13:26  旅游资源管理_jsp\Travel\.idea\workspace.xml
     目录           0  2016-12-20 21:31  旅游资源管理_jsp\Travel\.myeclipse\
     文件         291  2016-04-12 16:47  旅游资源管理_jsp\Travel\.mymetadata
     文件        1749  2016-04-12 16:47  旅游资源管理_jsp\Travel\.project
     目录           0  2019-10-07 13:37  旅游资源管理_jsp\Travel\.settings\
     文件         500  2012-04-18 11:05  旅游资源管理_jsp\Travel\.settings\.jsdtscope
     文件          97  2016-05-19 21:22  旅游资源管理_jsp\Travel\.settings\org.eclipse.core.resources.prefs
     文件         395  2016-04-12 16:47  旅游资源管理_jsp\Travel\.settings\org.eclipse.jdt.core.prefs
     文件         456  2016-04-12 16:47  旅游资源管理_jsp\Travel\.settings\org.eclipse.wst.common.component
     文件         252  2016-04-12 16:47  旅游资源管理_jsp\Travel\.settings\org.eclipse.wst.common.project.facet.core.xml
     文件          49  2016-04-12 16:47  旅游资源管理_jsp\Travel\.settings\org.eclipse.wst.jsdt.ui.superType.container
     文件           6  2016-04-12 16:47  旅游资源管理_jsp\Travel\.settings\org.eclipse.wst.jsdt.ui.superType.name
     目录           0  2019-10-07 13:37  旅游资源管理_jsp\Travel\out\
     目录           0  2019-10-07 13:37  旅游资源管理_jsp\Travel\out\artifacts\
     目录           0  2019-10-07 13:37  旅游资源管理_jsp\Travel\out\artifacts\Travel_war_exploded\
     文件        4167  2016-04-18 13:41  旅游资源管理_jsp\Travel\out\artifacts\Travel_war_exploded\AboutUs.html
     文件        6059  2016-04-19 18:54  旅游资源管理_jsp\Travel\out\artifacts\Travel_war_exploded\bbsindex.jsp
     文件        8306  2016-05-19 21:37  旅游资源管理_jsp\Travel\out\artifacts\Travel_war_exploded\bbsmsg.jsp
     文件        3995  2016-04-19 15:19  旅游资源管理_jsp\Travel\out\artifacts\Travel_war_exploded\English.html
............此处省略357个文件信息

评论

共有 条评论