Java-JFrame窗体美化方式
jframe默认的窗体比较土,可以通过一定的美化,让窗体表现的比较漂亮,具体要根据设计的设计图进行美化;
jframe美化的大致思路:先将jframe去除默认美化效果,实现jwindow效果,然后再jwindow基础上对窗体的各项内容自定义设置与美化,大多用到插入背景图片、添加各种鼠标事件、弹窗与输入框等圆角等各种美化;
下面是一个登录窗体的美化代码,以后再有对窗体美化的可以参照一下代码进行美化:
1、login实体类代码:
package com; import java.awt.color; import java.awt.eventqueue; import java.awt.font; import java.awt.image; import java.awt.geom.roundrectangle2d; import java.io.file; import javax.swing.imageicon; import javax.swing.jframe; import javax.swing.jlayeredpane; import javax.swing.jpanel; import javax.swing.jrootpane; import javax.swing.jlabel; import com.alibaba.fastjson.json; import com.model.message; import com.model.user; import com.sun.awt.awtutilities; import com.util.fileutils; import com.util.mybutton; import com.util.mylineborder; import com.util.verifycodeutils; import java.awt.event.mouseadapter; import java.awt.event.mouseevent; import javax.swing.jtextfield; import javax.swing.border.matteborder; import javax.swing.jpasswordfield; import java.awt.event.focusadapter; import java.awt.event.focusevent; /** * 用户登录窗体(按照设计图片效果制作) * @author admin * */ public class login1{ private jframe frame;//窗体 private jtextfield usernamefield;//用户名输入框 private jpasswordfield passwordfield;//密码输入框 private jtextfield verifycodefield;//验证码输入框 private string verifycode;//验证码图片中的验证码值 /** * launch the application. */ public static void main(string[] args) { eventqueue.invokelater(new runnable() { public void run() { try { login1 window = new login1(); window.frame.setvisible(true); } catch (exception e) { e.printstacktrace(); } } }); } /** * create the application. */ public login1() { initialize(); } /** * initialize the contents of the frame. */ private void initialize() { //将存储验证码文件夹下的所有验证码图片删除 fileutils.deleteallfiles("./verifycodeimg"); //自定义圆角输入框边界线 mylineborder mylineborder = new mylineborder(new color(192, 192, 192), 1 , true); //只显示输入框的下边框 matteborder bottomborder = new matteborder(0, 0, 1, 0, new color(192, 192, 192)); //设置jframe禁用本地外观,使用下面自定义设置的外观; jframe.setdefaultlookandfeeldecorated(true); frame = new jframe(); frame.setbounds(0, 0, 300, 490); frame.setdefaultcloseoperation(jframe.exit_on_close); frame.getcontentpane().setlayout(null); /** * 对窗体进行基本设置 */ //设置窗体在计算机窗口的中心部位显示 frame.setlocationrelativeto(frame.getowner()); // 去掉窗口的装饰 frame.setundecorated(true); //采用指定的窗口装饰风格 frame.getrootpane().setwindowdecorationstyle(jrootpane.none); //设置窗体圆角,最后两个参数分别为圆角的宽度、高度数值,一般这两个数值都是一样的 awtutilities.setwindowshape(frame, new roundrectangle2d.double(0.0d, 0.0d, frame.getwidth(), frame.getheight(), 20.0d, 20.0d)); //设置背景颜色,记住一定要修改frame.getcontentpane()的颜色,因为我们看到的都是这个的颜色而并不是frame的颜色 frame.getcontentpane().setbackground(color.white); /** * 插入顶部非凡汽车背景图片 */ //创建具有分层的jlayeredpane jlayeredpane layeredpane = new jlayeredpane(); layeredpane.setbounds(0, -5, 300, 200); frame.getcontentpane().add(layeredpane); // 创建图片对象 imageicon img = new imageicon(login1.class.getresource("/images/dingbu.jpg")); //设置图片在窗体中显示的宽度、高度 img.setimage(img.getimage().getscaledinstance(300, 200,image.scale_default)); jpanel panel = new jpanel(); panel.setbounds(0, -5, 300, 200); layeredpane.add(panel, jlayeredpane.default_layer); jlabel lblnewlabel = new jlabel(""); panel.add(lblnewlabel); lblnewlabel.seticon(img); /** * 插入窗体关闭的背景图片及功能 */ // 创建图片对象 imageicon closeimg = new imageicon(login1.class.getresource("/images/close.png")); //设置图片在窗体中显示的宽度、高度 closeimg.setimage(closeimg.getimage().getscaledinstance(31, 31,image.scale_default)); jpanel closepanel = new jpanel(); closepanel.setbounds(269, -5, 31, 31); layeredpane.add(closepanel,jlayeredpane.modal_layer); jlabel closelabel = new jlabel(""); closepanel.add(closelabel); closelabel.seticon(closeimg); closelabel.addmouselistener(new mouseadapter() { //鼠标点击关闭图片,实现关闭窗体的功能 @override public void mouseclicked(mouseevent e) { //dispose(); system.exit(0);//使用dispose();也可以关闭只是不是真正的关闭 } //鼠标进入,换关闭的背景图片 @override public void mouseentered(mouseevent e) { // 创建图片对象 imageicon closeimg1 = new imageicon(login1.class.getresource("/images/mouse_close.png")); //设置图片在窗体中显示的宽度、高度 closeimg1.setimage(closeimg1.getimage().getscaledinstance(31, 31,image.scale_default)); closelabel.seticon(closeimg1); } //鼠标离开,换关闭的背景图片 @override public void mouseexited(mouseevent e) { // 创建图片对象 imageicon closeimg = new imageicon(login1.class.getresource("/images/close.png")); //设置图片在窗体中显示的宽度、高度 closeimg.setimage(closeimg.getimage().getscaledinstance(31, 31,image.scale_default)); closelabel.seticon(closeimg); } }); /** * 插入窗体最小化的背景图片及功能 */ // 创建图片对象 imageicon minimg = new imageicon(login1.class.getresource("/images/min.png")); //设置图片在窗体中显示的宽度、高度 minimg.setimage(minimg.getimage().getscaledinstance(31, 31,image.scale_default)); jpanel minpanel = new jpanel(); minpanel.setbounds(237, -5, 31, 31); layeredpane.add(minpanel,jlayeredpane.modal_layer); jlabel minlabel = new jlabel(""); minlabel.addmouselistener(new mouseadapter() { //鼠标点击最小化图片,实现最小化窗体的功能 @override public void mouseclicked(mouseevent e) { frame.setextendedstate(jframe.iconified);//最小化窗体 } //鼠标进入,换最小化的背景图片 @override public void mouseentered(mouseevent e) { // 创建图片对象 imageicon minimg1 = new imageicon(login1.class.getresource("/images/mouse_min.png")); //设置图片在窗体中显示的宽度、高度 minimg1.setimage(minimg1.getimage().getscaledinstance(31, 31,image.scale_default)); minlabel.seticon(minimg1); } //鼠标离开,换最小化的背景图片 @override public void mouseexited(mouseevent e) { // 创建图片对象 imageicon minimg = new imageicon(login1.class.getresource("/images/min.png")); //设置图片在窗体中显示的宽度、高度 minimg.setimage(minimg.getimage().getscaledinstance(31, 31,image.scale_default)); minlabel.seticon(minimg); } }); minpanel.add(minlabel); minlabel.seticon(minimg); /** * 插入用户名输入框前面的图片 */ // 创建图片对象 imageicon usernameimg = new imageicon(login1.class.getresource("/images/user_name.png")); //设置图片在窗体中显示的宽度、高度 usernameimg.setimage(usernameimg.getimage().getscaledinstance(40, 40,image.scale_default)); jlabel usernamelabel = new jlabel(""); usernamelabel.setbounds(0, 220, 40, 40); usernamelabel.seticon(usernameimg); //默认获取光标 usernamelabel.setfocusable(true); frame.getcontentpane().add(usernamelabel); /** * 添加圆角的用户名输入框 */ usernamefield = new jtextfield(); usernamefield.setbounds(50, 220, 235, 50); usernamefield.setborder(bottomborder); usernamefield.settext(" 用户名"); usernamefield.setfont(new font("微软雅黑", 0, 14)); usernamefield.setforeground(color.gray);//默认设置输入框中的文字颜色为灰色 usernamefield.addfocuslistener(new focusadapter() { //获取光标事件 @override public void focusgained(focusevent e) { //获取焦点时,输入框中内容是“用户名”,那么去掉输入框中显示的内容; if("用户名".equals((usernamefield.gettext().trim()))){ usernamefield.settext(""); usernamefield.setforeground(color.black);//设置颜色为黑色 } } //失去光标事件 @override public void focuslost(focusevent e) { //失去焦点时,如果输入框中去掉空格后的字符串为空串则显示用户名 if("".equals((usernamefield.gettext().trim()))){ usernamefield.settext(" 用户名"); usernamefield.setfont(new font("微软雅黑", 0, 14)); usernamefield.setforeground(color.gray);//默认设置输入框中的文字颜色为灰色 } } }); frame.getcontentpane().add(usernamefield); usernamefield.setcolumns(10); /** * 插入密码输入框前面的图片 */ // 创建图片对象 imageicon passwordimg = new imageicon(login1.class.getresource("/images/password.png")); //设置图片在窗体中显示的宽度、高度 passwordimg.setimage(passwordimg.getimage().getscaledinstance(40, 40,image.scale_default)); jlabel passwordlabel = new jlabel(""); passwordlabel.setbounds(0, 280, 40, 40); passwordlabel.seticon(passwordimg); frame.getcontentpane().add(passwordlabel); /** * 添加圆角的密码输入框 */ passwordfield = new jpasswordfield(); passwordfield.setbounds(50, 280, 235, 50); passwordfield.setborder(bottomborder); passwordfield.settext(" 密码"); passwordfield.setfont(new font("微软雅黑", 0, 14)); passwordfield.setforeground(color.gray);//默认设置输入框中的文字颜色为灰色 passwordfield.setechochar((char)0);//显示密码输入框中内容 passwordfield.addfocuslistener(new focusadapter() { //获取光标事件 @override public void focusgained(focusevent e) { //获取焦点时,输入框中内容是“用户名”,那么去掉输入框中显示的内容; if("密码".equals((passwordfield.gettext().trim()))){ passwordfield.settext(""); passwordfield.setechochar('*');//显示密码输入框中内容 passwordfield.setforeground(color.black);//设置颜色为黑色 } } //失去光标事件 @override public void focuslost(focusevent e) { //失去焦点时,如果输入框中去掉空格后的字符串为空串则显示用户名 if("".equals((passwordfield.gettext().trim()))){ passwordfield.settext(" 密码"); passwordfield.setfont(new font("微软雅黑", 0, 14)); passwordfield.setforeground(color.gray);//默认设置输入框中的文字颜色为灰色 passwordfield.setechochar((char)0);//显示密码输入框中内容 } } }); frame.getcontentpane().add(passwordfield); /** * 插入验证码输入框前面的图片 */ // 创建图片对象 imageicon verifycodeimg = new imageicon(login1.class.getresource("/images/verify_code.png")); //设置图片在窗体中显示的宽度、高度 verifycodeimg.setimage(verifycodeimg.getimage().getscaledinstance(40, 40,image.scale_default)); jlabel verifycodelabel = new jlabel(""); verifycodelabel.setbounds(0, 340, 40, 40); verifycodelabel.seticon(verifycodeimg); frame.getcontentpane().add(verifycodelabel); /** * 添加圆角的验证码输入框 */ verifycodefield = new jtextfield(); verifycodefield.setbounds(50, 340, 135, 50); verifycodefield.setborder(bottomborder); verifycodefield.settext(" 验证码"); verifycodefield.setfont(new font("微软雅黑", 0, 14)); verifycodefield.setforeground(color.gray);//默认设置输入框中的文字颜色为灰色 verifycodefield.addfocuslistener(new focusadapter() { //获取光标事件 @override public void focusgained(focusevent e) { //获取焦点时,输入框中内容是“用户名”,那么去掉输入框中显示的内容; if("验证码".equals((verifycodefield.gettext().trim()))){ verifycodefield.settext(""); verifycodefield.setforeground(color.black);//设置颜色为黑色 } } //失去光标事件 @override public void focuslost(focusevent e) { //失去焦点时,如果输入框中去掉空格后的字符串为空串则显示用户名 if("".equals((verifycodefield.gettext().trim()))){ verifycodefield.settext(" 验证码"); verifycodefield.setfont(new font("微软雅黑", 0, 14)); verifycodefield.setforeground(color.gray);//默认设置输入框中的文字颜色为灰色 } } }); frame.getcontentpane().add(verifycodefield); verifycodefield.setcolumns(10); /** * 添加验证码图片 */ jlabel verifycodeimglabel = new jlabel(""); verifycodeimglabel.setbounds(190, 340, 95, 50); verifycodeimglabel.setborder(mylineborder); frame.getcontentpane().add(verifycodeimglabel); //生成一张验证码图片 verifycode = verifycodeutils.createonecodeimage(); //将刚生成的验证码图片显示在窗体中去 imageicon verifycodesourceimg = new imageicon("./verifycodeimg/"+verifycode+".jpg");// 创建图片对象 //设置图片在窗体中显示的宽度、高度 verifycodesourceimg.setimage(verifycodesourceimg.getimage().getscaledinstance(95, 50,image.scale_default)); verifycodeimglabel.seticon(verifycodesourceimg); //点击验证码图片,换一个新的验证码图片 verifycodeimglabel.addmouselistener(new mouseadapter() { @override public void mouseclicked(mouseevent e) { //删除上一次的验证码图片 file file = new file("./src/verifycodeimg/"+verifycode+".jpg"); if(file.exists()){ file.delete(); } //生成一张新的验证码图片 verifycode = verifycodeutils.createonecodeimage(); imageicon verifycodesourceimg1 = new imageicon("./verifycodeimg/"+verifycode+".jpg"); verifycodesourceimg1.setimage(verifycodesourceimg1.getimage().getscaledinstance(95, 50,image.scale_default)); verifycodeimglabel.seticon(verifycodesourceimg1); } }); /** * 添加提示性信息的jlabel */ jlabel remindermessage = new jlabel("",jlabel.center); remindermessage.setbounds(15, 395, 270, 20); remindermessage.setforeground(color.red); remindermessage.setfont(new font("微软雅黑", 0, 12)); frame.getcontentpane().add(remindermessage); /** * 添加圆角的提交按钮 */ mybutton mybutton = new mybutton("安全登录", 0); mybutton.setbounds(15, 420, 270, 50); frame.getcontentpane().add(mybutton); //设置窗体可见 frame.setvisible(true); } }
2、工具类fileutils代码:
package com.util; import java.io.file; /** * 对文件操作的工具类 * @author admin * */ public class fileutils { /** * 删除指定文件夹下的所有文件,此文件夹内只有文件,没有任何文件夹 */ public static boolean deleteallfiles(string filepath){ boolean result = false; file file = new file(filepath); file temp = null; if(file.exists()){ string [] templist = file.list(); for (string string : templist) { temp = new file(filepath+"/"+string); if(temp.isfile()){ temp.delete(); } } templist = file.list(); if(templist.length==0){ result = true; } } return result; } public static void main(string[] args) { boolean result = fileutils.deleteallfiles("./verifycodeimg"); system.out.println(result); } }
3、工具类mybutton代码:
package com.util; import java.awt.alphacomposite; import java.awt.color; import java.awt.font; import java.awt.gradientpaint; import java.awt.graphics; import java.awt.graphics2d; import java.awt.insets; import java.awt.renderinghints; import java.awt.shape; import java.awt.event.mouseadapter; import java.awt.event.mouseevent; import java.awt.geom.roundrectangle2d; import javax.swing.jbutton; import javax.swing.jframe; /** * 自定义带有圆角的按钮工具类 * @author admin * */ public class mybutton extends jbutton { /* 决定圆角的弧度 */ public static int radius = 4; public static color color1, color2; public static int pink = 3, ashen = 2, sky = 1, stone = 0; /* 粉红 */ public static color pink1 = new color(39, 121, 181); public static color pink2 = new color(39, 121, 181); /* 灰白 */ public static color ashen1 = new color(39, 121, 181); public static color ashen2 = new color(39, 121, 181); /* 深宝石蓝 */ public static color stone1 = new color(39, 121, 181); public static color stone2 = new color(39, 121, 181); /* 淡天蓝色 */ public static color sky1 = new color(39, 121, 181); public static color sky2 = new color(39, 121, 181); /* 光标进入按钮判断 */ private boolean hover; public mybutton() { this("", stone); } public mybutton(string name) { this(name, stone); } public mybutton(string name, int style) { super.settext(name); if (style == pink) { color1 = pink1; color2 = pink2; } if (style == ashen) { color1 = ashen1; color2 = ashen2; } if (style == stone) { color1 = stone1; color2 = stone2; } if (style == sky) { color1 = sky1; color2 = sky2; } paintcolor(color1, color2); } private void paintcolor(color color1, color color2) { setmargin(new insets(0, 0, 0, 0)); setfont(new font("微软雅黑", 0, 14)); setborderpainted(false); setforeground(color.white); setfocuspainted(false); setcontentareafilled(false); } @override protected void paintcomponent(graphics g) { graphics2d g2d = (graphics2d) g.create(); int height = getheight(); int with = getwidth(); float tran = 0.9f; /*if (!hover) { 鼠标离开/进入时的透明度改变量 tran = 0.6f; }*/ g2d.setrenderinghint(renderinghints.key_antialiasing, renderinghints.value_antialias_on); /* gradientpaint是颜色渐变类 */ gradientpaint p1; gradientpaint p2; if (getmodel().ispressed()) { p1 = new gradientpaint(0, 0, new color(0, 0, 0), 0, height, new color(100, 100, 100), true); p2 = new gradientpaint(0, 1, new color(0, 0, 0, 50), 0, height, new color(255, 255, 255, 100), true); } else { p1 = new gradientpaint(0, 0, new color(100, 100, 100), 0, height, new color(0, 0, 0), true); p2 = new gradientpaint(0, 1, new color(255, 255, 255, 100), 0, height, new color(0, 0, 0, 50), true); } g2d.setcomposite(alphacomposite.getinstance(alphacomposite.src_over, tran)); roundrectangle2d.float r2d = new roundrectangle2d.float(0, 0, with - 1, height - 1, radius, radius); // 最后两个参数数值越大,按钮越圆,以下同理 shape clip = g2d.getclip(); g2d.clip(r2d); gradientpaint gp = new gradientpaint(0.0f, 0.0f, color1, 0.0f, height / 2, color2, true); g2d.setpaint(gp); g2d.fillrect(0, 0, with, height); g2d.setclip(clip); g2d.setpaint(p1); g2d.drawroundrect(0, 0, with - 3, height - 3, radius, radius); g2d.setpaint(p2); g2d.drawroundrect(1, 1, with - 3, height - 3, radius, radius); g2d.dispose(); super.paintcomponent(g); } public static void main(string args[]) { jframe frm = new jframe(); mybutton but = new mybutton("圆角jbutton", 0); frm.setlayout(null); frm.setbounds(800, 400, 500, 200); but.setbounds(30, 30, 200, 50); frm.add(but); frm.setdefaultcloseoperation(3); frm.setvisible(true); } }
4、工具类mylineborder代码:
package com.util; import java.awt.color; import java.awt.component; import java.awt.graphics; import java.awt.graphics2d; import java.awt.renderinghints; import javax.swing.border.lineborder; /** * 为创建圆角输入框自定义边框线条工具类 * @author admin * */ public class mylineborder extends lineborder{ private static final long serialversionuid = 1l; public mylineborder(color color, int thickness, boolean roundedcorners) { super(color, thickness, roundedcorners); } public void paintborder(component c, graphics g, int x, int y, int width, int height) { renderinghints rh = new renderinghints(renderinghints.key_antialiasing, renderinghints.value_antialias_on); color oldcolor = g.getcolor(); graphics2d g2 = (graphics2d)g; int i; g2.setrenderinghints(rh); g2.setcolor(linecolor); for(i = 0; i < thickness; i++) { if(!roundedcorners) g2.drawrect(x+i, y+i, width-i-i-1, height-i-i-1); else g2.drawroundrect(x+i, y+i, width-i-i-1, height-i-i-1, 10, 10); //就是这一句 ,后两个参数控制圆角的大小 } g2.setcolor(oldcolor); } }
5、工具类verifycodeutils代码:
package com.util; import java.awt.color; import java.awt.font; import java.awt.graphics; import java.awt.graphics2d; import java.awt.renderinghints; import java.awt.geom.affinetransform; import java.awt.image.bufferedimage; import java.io.file; import java.io.fileoutputstream; import java.io.ioexception; import java.io.outputstream; import java.util.arrays; import java.util.random; import javax.imageio.imageio; /** * 生成验证码图片的工具类 * @author admin * */ public class verifycodeutils { // 使用到algerian字体,系统里没有的话需要安装字体,字体只显示大写,去掉了1,0,i,o几个容易混淆的字符 public static final string verify_codes = "23456789abcdefghjklmnpqrstuvwxyz"; private static random random = new random(); /** * 使用系统默认字符源生成验证码 * * @param verifysize * 验证码长度 * @return */ public static string generateverifycode(int verifysize) { return generateverifycode(verifysize, verify_codes); } /** * 使用指定源生成验证码 * * @param verifysize * 验证码长度 * @param sources * 验证码字符源 * @return */ public static string generateverifycode(int verifysize, string sources) { if (sources == null || sources.length() == 0) { sources = verify_codes; } int codeslen = sources.length(); random rand = new random(system.currenttimemillis()); stringbuilder verifycode = new stringbuilder(verifysize); for (int i = 0; i < verifysize; i++) { verifycode.append(sources.charat(rand.nextint(codeslen - 1))); } return verifycode.tostring(); } /** * 生成随机验证码文件,并返回验证码值 * * @param w * @param h * @param outputfile * @param verifysize * @return * @throws ioexception */ public static string outputverifyimage(int w, int h, file outputfile, int verifysize) throws ioexception { string verifycode = generateverifycode(verifysize); outputimage(w, h, outputfile, verifycode); return verifycode; } /** * 输出随机验证码图片流,并返回验证码值 * * @param w * @param h * @param os * @param verifysize * @return * @throws ioexception */ public static string outputverifyimage(int w, int h, outputstream os, int verifysize) throws ioexception { string verifycode = generateverifycode(verifysize); outputimage(w, h, os, verifycode); return verifycode; } /** * 生成指定验证码图像文件 * * @param w * @param h * @param outputfile * @param code * @throws ioexception */ public static void outputimage(int w, int h, file outputfile, string code) throws ioexception { if (outputfile == null) { return; } file dir = outputfile.getparentfile(); if (!dir.exists()) { dir.mkdirs(); } try { outputfile.createnewfile(); fileoutputstream fos = new fileoutputstream(outputfile); outputimage(w, h, fos, code); fos.close(); } catch (ioexception e) { throw e; } } /** * 输出指定验证码图片流 * * @param w * @param h * @param os * @param code * @throws ioexception */ public static void outputimage(int w, int h, outputstream os, string code) throws ioexception { int verifysize = code.length(); bufferedimage image = new bufferedimage(w, h, bufferedimage.type_int_rgb); random rand = new random(); graphics2d g2 = image.creategraphics(); g2.setrenderinghint(renderinghints.key_antialiasing, renderinghints.value_antialias_on); color[] colors = new color[5]; color[] colorspaces = new color[] { color.white, color.cyan, color.gray, color.light_gray, color.magenta, color.orange, color.pink, color.yellow }; float[] fractions = new float[colors.length]; for (int i = 0; i < colors.length; i++) { colors[i] = colorspaces[rand.nextint(colorspaces.length)]; fractions[i] = rand.nextfloat(); } arrays.sort(fractions); g2.setcolor(color.gray);// 设置边框色 g2.fillrect(0, 0, w, h); color c = getrandcolor(200, 250); g2.setcolor(c);// 设置背景色 g2.fillrect(0, 2, w, h - 4); // 绘制干扰线 random random = new random(); g2.setcolor(getrandcolor(160, 200));// 设置线条的颜色 for (int i = 0; i < 20; i++) { int x = random.nextint(w - 1); int y = random.nextint(h - 1); int xl = random.nextint(6) + 1; int yl = random.nextint(12) + 1; g2.drawline(x, y, x + xl + 40, y + yl + 20); } // 添加噪点 float yawprate = 0.05f;// 噪声率 int area = (int) (yawprate * w * h); for (int i = 0; i < area; i++) { int x = random.nextint(w); int y = random.nextint(h); int rgb = getrandomintcolor(); image.setrgb(x, y, rgb); } shear(g2, w, h, c);// 使图片扭曲 g2.setcolor(getrandcolor(100, 160)); int fontsize = h - 4; font font = new font("algerian", font.italic, fontsize); g2.setfont(font); char[] chars = code.tochararray(); for (int i = 0; i < verifysize; i++) { affinetransform affine = new affinetransform(); affine.settorotation(math.pi / 4 * rand.nextdouble() * (rand.nextboolean() ? 1 : -1), (w / verifysize) * i + fontsize / 2, h / 2); g2.settransform(affine); g2.drawchars(chars, i, 1, ((w - 10) / verifysize) * i + 5, h / 2 + fontsize / 2 - 10); } g2.dispose(); imageio.write(image, "jpg", os); } private static color getrandcolor(int fc, int bc) { 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); } private static int getrandomintcolor() { int[] rgb = getrandomrgb(); int color = 0; for (int c : rgb) { color = color << 8; color = color | c; } return color; } private static int[] getrandomrgb() { int[] rgb = new int[3]; for (int i = 0; i < 3; i++) { rgb[i] = random.nextint(255); } return rgb; } private static void shear(graphics g, int w1, int h1, color color) { shearx(g, w1, h1, color); sheary(g, w1, h1, color); } private static void shearx(graphics g, int w1, int h1, color color) { int period = random.nextint(2); boolean bordergap = true; int frames = 1; int phase = random.nextint(2); for (int i = 0; i < h1; i++) { double d = (double) (period >> 1) * math.sin((double) i / (double) period + (6.2831853071795862d * (double) phase) / (double) frames); g.copyarea(0, i, w1, 1, (int) d, 0); if (bordergap) { g.setcolor(color); g.drawline((int) d, i, 0, i); g.drawline((int) d + w1, i, w1, i); } } } private static void sheary(graphics g, int w1, int h1, color color) { int period = random.nextint(40) + 10; // 50; boolean bordergap = true; int frames = 20; int phase = 7; for (int i = 0; i < w1; i++) { double d = (double) (period >> 1) * math.sin((double) i / (double) period + (6.2831853071795862d * (double) phase) / (double) frames); g.copyarea(i, 0, 1, h1, 0, (int) d); if (bordergap) { g.setcolor(color); g.drawline(i, (int) d, i, 0); g.drawline(i, (int) d + h1, i, h1); } } } //生成一张验证码图片,并保存到项目的verifycodeimg文件夹下 public static string createonecodeimage(){ string imgname = ""; try { file dir = new file("./verifycodeimg"); int w = 95, h = 50; string verifycode = generateverifycode(4); file file = new file(dir, verifycode + ".jpg"); outputimage(w, h, file, verifycode); imgname = verifycode; } catch (ioexception e) { imgname = ""; e.printstacktrace(); }finally{ return imgname; } } public static void main(string[] args) throws ioexception { string codeimage = verifycodeutils.createonecodeimage(); system.out.println(codeimage); } }
补充知识:java swing概述: jframe窗体和jdialog窗体
gui(图形用户界面)为程序员提供图形界面,它最初的设计目的死为了程序员构建一个通用的gui,使其能够在所有的平台上运行,但是java 1.0 中的基础类awt(抽象窗口工具箱)并没有达到这个要求,于是swing出现了,它是awt组建的增强组建,但是它并不能完全替代awt,这两种组件需要同时出现在一个图形用户界面中。
swing组件
原来的awt组件来自java.awt包,当含有awt组件的java应用程序在不同的平台上执行时,每个平台的gui组件的显示会有所不同,但是在不同的平台运行swing开发的应用程序时,就可以统一gui组件的显示风格,因为swing组件允许编程人员在跨平台时指定统一的外观和风格。
swing组件通常被称为“轻量级组件”,因为它完全由java语言编写,而java时不依赖于操作系统的语言,它可在任何平台上运行;相反,依赖于本地平台的组件称为“重量级 组件”,如awt组件就是依赖本地平台的窗口系统来决定组件的功能、外观和风格。swing组件具有以下特点:
轻量级组件
可插入外观组件
swing包
为了有效的使用swing组件,必须了解swing包的层次结构和继承关系,其中比较重要的是component类、container类和jcomponent类。其中这几个类的继承关系如下:
javax.swing.jcomponent 继承自:
javax.awt.container类继承自:
javax.awt.component继承自:
java.lang.object类
在swing组件中大多数gui组件都是component类的直接子类或者间接子类,jcomponent类是swing组件各种特性的存放位置,这些组件的特性包括设定组件边界,gui组件自动滚动等。
在swing组件中最重要的是父类container类,而container类有两个重要的子类,分别为java.awt.window and java.awt.frame, 除了以往的awt类组件会继承这两个类之外,现在的swing组件也扩展了这两个类。
常用窗体
窗体作为swing应用程序中的组件的承载体,处于非常重要的位置。swing中常用的窗体包括jframe和jdialog。
jframe窗体
jframe窗体是一个容器,它是swing程序中各个组件的载体,可以将jframe看作是承载着血swing组件的容器。在开发应用程序时,可以通过继承java.swing.jframe类创建一个窗体。在这个窗体中添加组件,同时为组件设置事件。
由于该窗体继承了jframe类,所以它拥有“最大化”、“最小化”、和“关闭”等按钮
下面将详细讲解jframe窗体在java应用程序中的使用方法。
jframe在程序中的语法如下:
jframe jf = new jframe(title);
container container = jf.getcontentpane();
参数含义如下:
jf:jframe类对象
container: container类的对象,可以使用jframe对象调用getcontentpane()方法获取。
swing组件的窗体通常与组件和容器有关,所以jframe对象创建完成后,需要调用getcontentpane() 方法将窗体转换为容器,然后在容器中添加组件或者设置布局管理器。
通常这个容器用来包含和显示组件。如果需要将组件添加至容器,可以使用来自container类的add方法进行设置。例如:
container.add(new button("按钮"));
在容器中添加组件后,也可以使用container类的remove() 方法将这些组件从容器中删除,例如:
container.remove(new button("按钮"));
下面的实例实现了jframe对象创建一个窗体,并在其中添加一个组件。
package com.xsh; import java.awt.color; import java.awt.container; import javax.swing.jframe; import javax.swing.jlabel; import javax.swing.swingconstants; import javax.swing.windowconstants; public class example1 extends jframe { //创建一个类继承jframe类 public void createjframe(string title) { //定义一个createjframe方法 jframe jf = new jframe(title); //实例化一个jframe对象 container container = jf.getcontentpane(); //获取一个容器 jlabel jl = new jlabel("这是一个jframe窗体"); //创建一个jlabel标签 jl.sethorizontalalignment(swingconstants.center); //将标签位置设置为居中 jl.setforeground(color.white); //设置jlabel的颜色 container.add(jl); //将标签添加到容器中 container.setbackground(color.red); //设置容器背景颜色 jf.setvisible(true); //是窗体可视 jf.setsize(300, 150); //设置窗体大小 jf.setdefaultcloseoperation(windowconstants.exit_on_close); //设置窗体关闭方式 } public static void main(string[] args) { // todo auto-generated method stub new example1().createjframe("这是我创建的第一个jframe窗体。"); //主方法中调用jframe()方法 } }
其运行结果如下:
在上述例子中,example1类继承了jframe类,在createjframe()方法中,实例化了jframe对象。jframe类的常用构造方法包括以下两种形式:
public jframe().
public jframe(string title).
jframe类中的两种构造方法分别为无参的构造方法和有参的构造方法。
第一种形式的构造方法可以创建一个初始不可见、没有标题的新窗体;
第二种形式的构造方法在实例化该jframe对象时可以创建一个不可见但是具有标题的窗体。
可以使用jframe对象调用show()方法使窗体可见,但是该方法已经被系版本的jdk中的setvisible(true)方法取代。
同时可以使用setsize(int i, int j)方法设置窗体大小,其中x与y变量分别代表窗体的宽和高
创建窗体以后,需要给窗体一个关闭方式,可以调用setdefaultcloseoperation()方法关闭窗体。java为窗体关闭提供了多种方式,
常用的有以下四种;
do_nothing_on_close
dispose_on_close)
hide_on_close
exit_on_close
jdialog
jdialog窗体是swing组件中的对话框,它继承了awt组件中java.awt.dialog类。
jdialog窗体的功能是从另外一个窗体中弹出另外一个窗体,就像是在使用ie浏览器时弹出的确定对话框一样。jdialog窗体实质上就是另一种类型的窗体,它与jframe窗体类似,在使用时也需要调用getcontentpane()方法将窗体转换成容器,然后在容器中 设置窗体的特性。
在应用程序中创建jdialog窗体需要实例化jdialog类,通常使用以下几个jdialog类的构造方法。
public jdialog():创建一个没有标题和副窗体的对话框
public jdialog(frame f):创建一个指定父窗体的对话框,但是对话框没有标题
public jdialog(frame f, boolean model):创建一个指定类型的对话框,并指定父窗体,但该窗体没有指定标题。
public jdialog(frame f, string title):创建一个指定标题和父窗体的对话框
public jdialog(frame f, string title, boolean model):创建一个指定标题,父窗体和模式的对话框
下面来看一个实例:
package com.xsh; import java.awt.color; import java.awt.container; import java.awt.event.actionevent; import java.awt.event.actionlistener; import javax.swing.jbutton; import javax.swing.jdialog; import javax.swing.jframe; import javax.swing.jlabel; import javax.swing.swingconstants; import javax.swing.windowconstants; class mydialog extends jdialog{ private static final long serialversionuid = 1l; public mydialog(myframe frame) { super(frame,"第一个jdialog窗体", true); //实例化一个jdialog类对象,指定对话框的父窗体、窗体标题和类型 container container = getcontentpane(); //创建一个容器 container.add(new jlabel("这是一个jdialog对话框")); //在容器中添加标签 setbounds(100, 100, 200, 100); //设置容器的窗体大小,其中前两个值是设置对话框的位置,后两个值是设置对话框的大小 } } public class myframe extends jframe { //创建新类,继承自jframe private static final long serialversionuid = 1l; public static void main(string[] args) { // todo auto-generated method stub new myframe(); //实例化myframe对象 } public myframe() { container container = getcontentpane(); //创建一个容器 container.setlayout(null); jlabel jl = new jlabel("这是一个jframe窗体"); //在窗体中设置标签 jl.sethorizontalalignment(swingconstants.center); //将标签的文字至于标签中间的位置 container.add(jl); //将标签添加到容器中 jbutton jb = new jbutton("弹出对话框"); //定义一个按钮 jb.setbounds(10, 30, 100, 20); //设置按钮的大小 jb.addactionlistener(new actionlistener() { //为按钮添加点击事件 @override public void actionperformed(actionevent e) { // todo auto-generated method stub new mydialog(myframe.this).setvisible(true); //使mydialog窗体可见 //在点击事件中,完成了对话框的创建 } }); container.add(jb); container.setbackground(color.white); setsize(200,200); setdefaultcloseoperation(windowconstants.dispose_on_close); setvisible(true); } }
在本实例中,为了使对话框父窗体弹出,定义了一个jframe窗体,首先在该窗体中定义了一个按钮,然后为此按钮添加了一个点击事件。在点击事件中,我们使用了new myjdialog().setvisible(true) 语句使对话框窗体可见,这样就实现了单机 按钮之后弹出 对话框的功能。
在mydialog类中,由于它继承了jdialog类,所以可以在构造方法中使用super关键字调用jdialog构造方法。
在这里我们使用了 piublic jdialog(frame f, string title, boolean model); 这种形式的构造方法,相应的设置了自定义的jframe窗体以及对话框的标题和窗体类型。
以上这篇java-jframe窗体美化方式就是小编分享给大家的全部内容了,希望能给大家一个参考,也希望大家多多支持。
上一篇: 达梦/DM 锁超时
下一篇: Mybatis笔记06---动态SQL