新闻系统  此系统是用struts+spring+hibernate开发的 开发环境:eclipse3.1+MyEclipse4.1+tomcat 5.0+oracle 8.1 整个系统实现

源代码在线查看: check.java

软件大小: 19461 K
上传用户: wangdatouay
关键词: hibernate MyEclipse eclipse struts
下载地址: 免注册下载 普通下载 VIP

相关代码

				package com.news.utils;
				
				import java.awt.Color;
				import java.util.Random;
				
				public class Check {
					public Color getRandColor(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);
				        }
				}
							

相关资源