表⽩⼩程序(java版本,已经打包,解压后运⾏)
放假在家,写的表⽩⼩程序,喜欢的可以下载看看
先上图:
图⽚可以换成⼼仪对象的照⽚哦!
⽂章最后的下载包⾥⾯有打包好的exe⽂件,将在同⽬录下的res⽂件中的love2.jpg删除,将⼥朋友的美照复制进去,命名为love2.jpg(注意照⽚的分辨率最好为128x128,不然显⽰不完整)就可以替换程序的⽂件了
点击⼀次“不是”按钮后:
点击两次“不是”按钮后
点击“是”以后:
最后会弹出:
源代码放这⾥:package biaobai;
import java.awt.event.ActionEvent;
import java.awt.event.ActionListener;
import java.util.Random;
import javax.swing.ImageIcon;
import javax.swing.JButton;
import javax.swing.JFrame;
import javax.swing.JLabel;
import javax.swing.JOptionPane;
public class Love {
//控制窗⼝的位置
int width=450;
int high=200;
JFrame f=new JFrame("回答我");
//定义窗⼝的储存数组
static Love a[][]=new Love[5][5];
public static void main(String[] args){
new Love().init();
}
public Love(){};
public Love(int width,int high){
this.width=width;
this.high=high;
}
public void init(){
f.setLocation(width,high);
f.setSize(300,210);
f.setLayout(null);
//设置窗⼝不能调整
f.setResizable(false);
//去除窗⼝的标签栏
f.setUndecorated(true);
f.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE); //添加标签
ImageIcon icon=new ImageIcon("res/love2.jpg");
JLabel l=new JLabel("你是不是喜欢我?");
JLabel l3=new JLabel();
l.setBounds(145,90,200,20);
l3.setIcon(icon);
l3.setBounds(0,0,135,160);
l.setFont(new Font("宋体",Font.BOLD,18));
f.add(l3);
f.add(l);
JButton j1=new JButton("是");
JButton j2=new JButton("不是");
JButton j3=new JButton("关闭");
j1.setBounds(0,160,80,50);
j2.setBounds(220,160,80,50);
j3.setBounds(220,0,80,50);
f.add(j1);
f.add(j2);
Love_1 l1=new Love_1(f, j1, j2,j3);
j1.addActionListener(l1);
j2.addActionListener(l1);
j3.addActionListener(l1);
f.setVisible(true);
}
//创建⼀个窗⼝,表⽩图⽚,播放⾳乐
/
/此窗⼝结束时,退出程序
public static void init2(){
JFrame f1=new JFrame("I LOVE YOU ");
f1.setLocation(400,250);
f1.setSize(486,217);
f1.setLayout(null);
f1.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE); //定义图⽚和标签
ImageIcon icon=new ImageIcon("res/love.gif");
JLabel l=new JLabel();
l.setBounds(0,0,468,217);
l.setIcon(icon);
f1.add(l);
f1.setVisible(true);
}
}
//事件监听
class Love_1 implements ActionListener{
JFrame f;
JButton j1;
JButton j2;
JButton j3;
int i=0;
int j=0;
static int k=0,k1=0,k2=0;//⽤于标记
public Love_1(JFrame f, JButton j1, JButton j2,JButton j3){ this.f=f;
this.j1=j1;
this.j2=j2;
this.j3=j3;
入门的java游戏小程序}
@Override
public void actionPerformed(ActionEvent e){
//点击了是
Source()==j1){
JOptionPane.showMessageDialog(f,"喜欢就直说嘛~~~"); //关闭窗⼝
f.dispose();
//判断,当k2==1的时候关闭点击不是按钮引起的25个窗⼝if(k2==1){
k2=3;//改变数值,防⽌重复关闭
for(int i=0;i<5;i++)
for(int j=0;j<5;j++){
Love.a[i][j].f.dispose();
}
}
}
//点击了不是
else Source()==j2){
Random rand=new Random();
Int(1000);
Int(500);
f.setLocation(i,j);
f.setVisible(true);
k++;
if(k==1){
JOptionPane.showMessageDialog(f,"不许再点了!\n再点我⽣⽓了");
k1=k;
}
else if(k1==1){
//关闭原窗⼝
f.dispose();
k2=1;//标记赋值
k1=0;//重置为0,防⽌程序再次执⾏
for(int i=0;i<5;i++)
for(int j=0;j<5;j++){
//实例化窗⼝
Love.a[i][j]=new Love(i*300,j*200);
Love.a[i][j].init();
}
}
}
//点击了关闭按钮
else Source()==j3){
JOptionPane.showMessageDialog(f,"你以为关闭就可以回避这个话题吗?"); }
}
}
源代码⽂件在这⾥,需要的可以下载:
注:下载包⾥有已经打包好的exe⽂件,点击可以直接运⾏,压缩后可以直接发给对⽅,不需要java环境(已经⾃带jre包)

版权声明:本站内容均来自互联网,仅供演示用,请勿用于商业和其他非法用途。如果侵犯了您的权益请与我们联系QQ:729038198,我们将在24小时内删除。