1.急求java毕业设计选题系统源代码,带有连接数据库的,数据库是
核心代码:
public void actionPerformed(ActionEvent e) {
if(e.getSource() == add){
this.setVisible(false);
new AddPanel();
}
if(e.getSource() == modify){
this.setVisible(false);
new ModifyPanel();
}
if(e.getSource() == search){
this.setVisible(false);
new SearchPanel();
}
if(e.getSource() == exit){
System.exit(0);
}
}
。。..
有完整的源代码###
2.谁有Java毕业论文?
java的毕业论文在键盘论文网有很多的,我之前也是参考的他们的 你看看这个: 随着计算机与软件的进步,人机交互越来越需要发展,计算机和用户之间的接口也越来越具有方便用户的特性,从而制作用户界面系统也越来越复杂和花费人力,时间。
因此为了节省程序设计者的时间,有必要研究界面模板技术。 Java是一种灵活的、跨平台的、彻底地面向对象的程序设计语言。
由于Java具有众多特点是跨平台的优点,采甩java编写应用程序界面和web界面越来越流行。 而swing是目前Java中的一个重要的界面工具组类库,是建立GUI的强大工具,它比起Java的其他界面组件来说具有更多的优点,相信以后用java swing制作的界面的软件和web页面会越来越多,所以研究和设计java swing的界面模板有着非常重要的意义。
主要内容: 首先引入和介绍两种设计模式,即MVC模式和主控模式,并且详细描述和举例说明了swing类库与MVC模式之间的关联。 还不错吧 然后本文结合国内外现有的交互式用户界面模型的特点,提出了一种基于java/swing和两种设计模式的交互式界面的设计思想与具体实现方案。
该方案包含用户界面代理,能提供给用户图形的可视化方式来设计界面的视图,和控制器的设计;这套方案包括了几乎所有的基本控件,例如对话框,滚动条,分割栏,文本框等的界面生成器;然后以此方案做了一个示例程序,即利用swing类库和基于前面介绍的设计模式, 以按钮为例创建了一个界面生成器,该按钮生成器能按照用户输入的属性生成具有该属性的swing风格的按钮,并且生成相应的java代码,用户也可以通过代码来改变这个按钮。 也就是说它具有中间件的功能,能将界面内容保存在模板实例中以便修改及重用,并能根据模板实例生成界面程序源代码。
接着讲述了其他swing控件如编辑框,滚动条,弹出菜单等的做法,由此形成了一个开发swing风格界面的集成界面模板工具。最后,文章结尾总结了提出和研究设计的这套方案在意义和不足,以及进一步的工作。
关于java控件的东西。
3.求大师写一下Java代码源代码
package Project; import java.util.Scanner; public class Complex { int x; int y; Complex(){ x=0; y=0; } Complex(int i,int j){ x=i; y=j; }//显示 public void showComp(){ if(y>0){ System.out.print(x+"+"+y+"i"+'\t'); } if(ySystem.out.print(x+""+y+"i"+'\t'); } if(y==0){ System.out.print(x+""+'\t'); } }//求和 public static Complex addComp(Complex C1,Complex C2){ Complex newComplex=new Complex(); newComplex.x=C1.x+C2.x; newComplex.y=C1.y+C2.y; System.out.println(); System.out.print("和为:"); return newComplex; }//求差 public static Complex subComp(Complex C1,Complex C2){ Complex newComplex=new Complex(); newComplex.x=C1.x-C2.x; newComplex.y=C1.y-C2.y; System.out.println(); System.out.print("差为:"); return newComplex; }//求积 public static Complex multiComp(Complex C1,Complex C2){ Complex newComplex=new Complex(); newComplex.x=C1.x*C2.x-C1.y*C2.y; newComplex.y=C1.x*C2.y+C1.y*C2.x; System.out.println(); System.out.print("积为:"); return newComplex; }//是否相等 public static boolean equalComp(Complex C1,Complex C2){ System.out.println(); System.out.print("是否相等:"); return ((C1.x==C2.x)&&(C1.y==C2.y)); } public static void main(String[] args){ Scanner data=new Scanner(System.in); int x=data.nextInt(); int y=data.nextInt(); int m=data.nextInt(); int n=data.nextInt(); Complex Comp1=new Complex(x,y); Complex Comp2=new Complex(m,n); data.close();//显示 Comp1.showComp(); Comp2.showComp(); Complex.addComp(Comp1,Comp2).showComp(); //显示 和 Complex.subComp(Comp1, Comp2).showComp(); //显示 差 Complex.multiComp(Comp1, Comp2).showComp(); //显示 积 System.out.println( Complex.equalComp(Comp1, Comp2)); } }。
4.java源代码的编写
public class test {
int prise;
String name;
int site;
int num;
/** Creates a new instance of test */
public test() {
}
public test(int pr,int si,int nu,String na){
if(nu>=0){
prise=pr;
site=si;
name=na;
num=nu;
}
else System.out.println("error!please reset the product number.");
}
int getNum(){
System.out.println(num);
return num;}
int addNum(int j){
num=num+j;
System.out.println(num);
return num;
}
int subNum(int j){
if(j<=num) {
num=num-j;
System.out.println(num);
}
else System.out.println("error!");
return num;
}
public static void main(String [] argr){
int i=4;
int n=5;
int h=9;
String s="sjioajgj";
test te=new test(n,i,h,s);
te.getNum();
te.addNum(i);
te.getNum();
te.subNum(n);
te.getNum();
}
}
转载请注明出处众文网 » java毕业论文源代码