经典Java程序源代码
Java高效代码50例
Java⾼效代码50例摘⾃:导读 世界上只有两种物质:⾼效率和低效率;世界上只有两种⼈:⾼效率的⼈和低效率的⼈。
----萧伯纳常量&变量直接赋值常量,禁⽌声明新对象 直接赋值常量值,只是创建了⼀个对象引⽤,⽽这个对象引⽤指向常量值。
反例Long i=new Long(1L);String s=new String("abc");正例Long i=1L;String s="abc";当成员变量值⽆需改变时,尽量定义为静态常量 在类的每个对象实例中,每个成员变量都有⼀份副本,⽽成员静态常量只有⼀份实例。
反例public class HttpConnection{private final long timeout=5L;...}正例public class HttpConnection{private static final long timeout=5L;...}尽量使⽤基本数据类型,避免⾃动装箱和拆箱 Java中的基本数据类型double、float、long、int、short、char、boolean,分别对应包装类Double、Float、Long、Integer、Short、Character、Boolean。
Jvm⽀持基本类型与对象包装类的⾃动转换,被称为⾃动装箱和拆箱。
装箱和拆箱都是需要CPU和内存资源的,所以应尽量避免⾃动装箱和拆箱。
反例Integer sum = 0;int[] values = { 1, 2, 3, 4, 5 };for (int value : values) {sum+=value;}正例int sum = 0;int[] values = { 1, 2, 3, 4, 5 };for (int value : values) {sum+=value;}如果变量的初值会被覆盖,就没有必要给变量赋初值反例public static void main(String[] args) {boolean isAll = false;List<Users> userList = new ArrayList<Users>();if (isAll) {userList = userDAO.queryAll();} else {userList=userDAO.queryActive();}}public class Users {}public static class userDAO {public static List<Users> queryAll() {return null;}public static List<Users> queryActive() {return null;}}正例public static void main(String[] args) {boolean isAll = false;List<Users> userList;if (isAll) {userList = userDAO.queryAll();} else {userList=userDAO.queryActive();}}public class Users {}public static class userDAO {public static List<Users> queryAll() {return null;}public static List<Users> queryActive() {return null;}}尽量使⽤函数内的基本类型临时变量 在函数内,基本类型的参数和临时变量都保存在栈(Stack)中,访问速度较快;对象类型的参数和临时变量的引⽤都保存在栈(Stack)中,内容都保存在堆(Heap)中,访问速度较慢。
程序源代码模板 (2).doc
页面布局模块程序代码MainActivity.javapackage com.my.llkangame;//第一个页面import android.app.ListActivity;import android.app.ProgressDialog;import android.content.Intent;import android.os.Bundle;import android.view.View;import android.view.ViewGroup;import android.widget.ImageView;import android.widget.ListView;import android.widget.TextView;import com.plter.lib.android.java.controls.ArrayAdapter;import com.plter.linkgame.R;public class MainActivity extends ListActivity {private ArrayAdapter<GameListCellData> adapter;//定义适配器private ProgressDialog dialog=null;//dialog//savedInstanceStateprotected void onCreate(Bundle savedInstanceState) {super.onCreate(savedInstanceState);setContentView(yout.main_activity);//main_activity.xml//设置适配器adapter=newArrayAdapter<MainActivity.GameListCellData>(this,yout.game_list_cell) {@Overridepublic void initListCell(int position, View listCell, ViewGroup parent) {ImageView iconIv = (ImageView) listCell.findViewById(R.id.iconIv);TextView labelTv=(TextView) listCell.findViewById(belTv);GameListCellData data = getItem(position);iconIv.setImageResource(data.iconResId);labelTv.setText(bel);}};setListAdapter(adapter);//适配器集合adapter.add(new GameListCellData("水果连连看", R.drawable.sg_icon, "sg_config.json"));adapter.add(new GameListCellData("蔬菜连连看", R.drawable.sc_icon, "sc_config.json"));adapter.add(new GameListCellData("动物连连看", R.drawable.dw_icon, "dw_config.json"));adapter.add(new GameListCellData("爱心连连看", R.drawable.love_icon, "love_config.json"));adapter.add(new GameListCellData("宝石连连看", R.drawable.coin_icon, "coin_config.json"));}@Overrideprotected void onPause() {if (dialog!=null) {dialog.dismiss();dialog=null;}super.onPause();}@Overrideprotected void onListItemClick(ListView l, View v, int position, long id) {dialog=ProgressDialog.show(this, "请稍候", "正在加载游戏资源");GameListCellData data = adapter.getItem(position);Intent i = new Intent(this, LinkGameActivity.class);i.putExtra("configFile", data.gameConfigFile);startActivity(i);super.onListItemClick(l, v, position, id);}public static class GameListCellData{public String label=null;public int iconResId=0;public String gameConfigFile=null;public GameListCellData(String label,int iconResId,String gameConfigFile) {bel=label;this.iconResId=iconResId;this.gameConfigFile=gameConfigFile;}}}LinkGameActivity.javapackage com.my.llkangame;import android.app.Activity;import android.os.Bundle;import android.text.TextUtils;import android.view.Display;import android.widget.Button;import android.widget.TextView;import com.my.cord.Config;import com.my.cord.GameViewhhxx;import com.my.reader.InnerGameReader;import com.plter.linkgame.R;//游戏开始界面宽高、布局等且开始游戏public class LinkGameActivity extends Activity {private GameViewhhxx gameView;/** Called when the activity is first created. */@SuppressWarnings("deprecation")public void onCreate(Bundle savedInstanceState) {super.onCreate(savedInstanceState);String configFile = getIntent().getStringExtra("configFile");if (TextUtils.isEmpty(configFile)) {finish();return;}//获得屏幕宽高Display display = getWindowManager().getDefaultDisplay();Config.setScreenWidth(display.getWidth());Config.setScreenHeight(display.getHeight());//设置内容布局setContentView(yout.link_game_activity);gameView=(GameViewhhxx) findViewById(R.id.gameView);gameView.setTimeTv((TextView) findViewById(R.id.timeTv));gameView.setLevelTv((TextView) findViewById(R.id.levelTv));gameView.setBreakCardsBtn((Button) findViewById(R.id.breakCardsBtn));gameView.setNoteBtn((Button) findViewById(R.id.noteBtn));gameView.setPauseBtn((Button) findViewById(R.id.pauseBtn));//根据游戏资源包初始化游戏gameView.initWithGamePkg(InnerGameReader.readGame(this, configFile));//开始启动游戏gameView.showStartGameAlert();}protected void onPause() {gameView.pause();super.onPause();}protected void onResume() {gameView.resume();super.onResume();}}LinesContainer.javapackage com.my.cord;import java.util.List;import android.content.Context;import android.graphics.Canvas;import android.graphics.Paint;import android.graphics.Paint.Style;import android.graphics.Path;import android.graphics.PointF;import android.view.View;import android.view.animation.AlphaAnimation;import android.view.animation.Animation;import android.view.animation.Animation.AnimationListener;/*** 设置对图片进行连接的线的宽度和颜色*/public class LinesContainer extends View implements AnimationListener{ private List<PointF> points=null;private final Paint paint=new Paint();private final Path path = new Path();private final AlphaAnimation aa = new AlphaAnimation(1, 0);public LinesContainer(Context context) {super(context);paint.setStyle(Style.STROKE);paint.setStrokeWidth(5);paint.setColor(0xFFFF0000);aa.setDuration(500);aa.setAnimationListener(this);setVisibility(View.GONE);}public void showLines(List<PointF> points){if (points.size()<2) {throw new RuntimeException("点的个数不能小于2");}else{setVisibility(View.VISIBLE);this.points=points;invalidate();startAnimation(aa);}}protected void onDraw(Canvas canvas) {if (points==null||points.size()<2) {return;}path.reset();PointF p=points.get(0);path.moveTo(p.x, p.y);for (int i = 1; i < points.size(); i++) {p=points.get(i);path.lineTo(p.x, p.y);}canvas.drawPath(path, paint);super.onDraw(canvas);}public void onAnimationStart(Animation animation) {}public void onAnimationEnd(Animation animation) { setVisibility(View.GONE);}public void onAnimationRepeat(Animation animation) {} }Config.javapackage com.my.cord;public class Config {private static float cardWidth=0;private static float cardHeight=0;private static float screenWidth=0;private static float screenHeight=0;private static float cardsOffsetX=0;private static float cardsOffsetY=0;/*** 游戏区域的宽度*/private static float gameCardsAreaWidth=0;/*** 游戏区域的高度*/private static float gameCardsAreaHeight=0;/*** 卡片的上边距*/public static final float GAME_CARDS_AREA_TOP=80;/*** 卡片的下边距*/public static final float GAME_CARDS_AREA_BOTTOM=80;/*** 卡片区域左边距*/public static final float GAME_CARDS_AREA_LEFT=0;/*** 卡片区域右边距*/public static final float GAME_CARDS_AREA_RIGHT=0;/*** @return the screenWidth*/public static float getScreenWidth() {return screenWidth;}/*** @param screenWidth the screenWidth to set*/public static void setScreenWidth(float screenWidth) {Config.screenWidth = screenWidth;Config.setGameCardsAreaWidth(Config.getScreenWidth()-Config.GAME_CARDS_AREA_ LEFT-Config.GAME_CARDS_AREA_RIGHT);computeCardWidthAndHeight();}/*** @return the screenHeight*/public static float getScreenHeight() {return screenHeight;}/*** @param screenHeight the screenHeight to set*/public static void setScreenHeight(float screenHeight) {Config.screenHeight = screenHeight;Config.setGameCardsAreaHeight(Config.getScreenHeight()-Config.GAME_CARDS_ARE A_BOTTOM-Config.GAME_CARDS_AREA_TOP);computeCardWidthAndHeight();}private static void computeCardWidthAndHeight(){float cardWidth=Config.getGameCardsAreaWidth()/Level.MAX_H_CARDS_COUNT;floatcardHeight=Config.getGameCardsAreaHeight()/Level.MAX_V_CARDS_COUNT;float min = Math.min(cardWidth, cardHeight);Config.setCardWidth(min);//卡片最小宽Config.setCardHeight(min);//卡片最小高}/*** @return the cardWidth*/public static float getCardWidth() {return cardWidth;}/*** @param cardWidth the cardWidth to set*/private static void setCardWidth(float cardWidth) {Config.cardWidth = cardWidth;}/*** @return the cardHeight*/public static float getCardHeight() {return cardHeight;}/*** @param cardHeight the cardHeight to set*/private static void setCardHeight(float cardHeight) {Config.cardHeight = cardHeight;}/*** @return the cardsOffsetX*/public static float getCardsOffsetX() {return cardsOffsetX;}/*** @param cardsOffsetX the cardsOffsetX to set*/public static void setCardsOffsetX(float cardsOffsetX) { Config.cardsOffsetX = cardsOffsetX;}/*** @return the cardsOffsetY*/public static float getCardsOffsetY() {return cardsOffsetY;}/*** @param cardsOffsetY the cardsOffsetY to set*/public static void setCardsOffsetY(float cardsOffsetY) { Config.cardsOffsetY = cardsOffsetY;}/*** @return the gameCardsAreaWidth*/public static float getGameCardsAreaWidth() {return gameCardsAreaWidth;}/*** @param gameCardsAreaWidth the gameCardsAreaWidth to set */private static void setGameCardsAreaWidth(float gameCardsAreaWidth) { Config.gameCardsAreaWidth = gameCardsAreaWidth;}/*** @return the gameCardsAreaHeight*/public static float getGameCardsAreaHeight() {return gameCardsAreaHeight;}/*** @param gameCardsAreaHeight the gameCardsAreaHeight to set*/private static void setGameCardsAreaHeight(float gameCardsAreaHeight) { Config.gameCardsAreaHeight = gameCardsAreaHeight;}}Picture.javapackage com.my.reader;import android.graphics.Bitmap;/*** Bitmap 面板**/public class Picture {public Picture(Bitmap bitmap) {this.bitmap=bitmap;id=__getId();}public Bitmap getBitmap() {return bitmap;}private int id=0;public int getId() {return id;}private Bitmap bitmap=null;private static int __id=0;private static int __getId(){__id++;return __id;}}算法分析模块程序代码Cardmm.javapackage com.my.cord;/**重排:先遍历当前页面还有的图片,调用随机算法调换页面中图片的位置* 先选中一张图片,获取此图片在垂直和水平方向上的的位置,判断是否被选中,判断当前已选中的图片个数*若选中图片个数小于2张,再选择一张图片,重复上一个动作,若选中图片个数达到2张,判断是否满足消除条件*若满足,则消除,若不满足,则不发生任何变化。
优秀java开源项目代码
优秀java开源项目代码
有许多优秀的Java开源项目可供学习。
以下是一些示例:
1.Spring Framework:Spring是一个开源的Java平台,为开发者提供了
全面的编程和配置模型,以及一个轻量级的无侵入式框架。
它是一个为Java应用程序开发提供全面支持的框架,尤其在开发企业级应用程序方面表现突出。
2.Hibernate:Hibernate是一个对象关系映射(ORM)框架,它允许Java程
序员将对象模型映射到关系数据库中。
Hibernate提供了一种方式,使你可以直接将对象之间的相互作用映射到数据库的CRUD操作。
3.Apache Commons:Apache Commons是一组Java工具库,提供了许
多实用的功能,包括字符串操作、文件操作、数值计算等。
这个项目为Java开发者提供了许多易于使用且高效的工具。
4.Guava:Guava是Google的Java核心库,提供了很多有用的工具类和实
用程序,如缓存、并发库、原始类型支持、集合操作、字符串处理、I/O等。
flix Eureka:Eureka是一个服务发现组件,用于定位运行在AWS云
或其他云平台上的中间层服务,而不需要服务消费者知道服务提供者的实例ID。
flix Hystrix:Hystrix是一个容错管理工具,旨在隔离访问远程系统、
服务和第三方库的点,以防止级联故障。
flix Ribbon:Ribbon是一个客户端负载均衡器,有助于在云端实现
微服务之间的通信。
以上都是优秀的Java开源项目,你可以从中学习到很多知识和技巧。
20个java案例
20个java案例以下是20个Java案例,涵盖了不同的主题和功能。
每个案例都有一个简要的描述和示例代码。
1. 计算两个数的和。
描述,编写一个程序,计算两个整数的和并输出结果。
示例代码:java.int num1 = 10;int num2 = 5;int sum = num1 + num2;System.out.println("两个数的和为," + sum);2. 判断一个数是否为偶数。
描述,编写一个程序,判断一个整数是否为偶数,并输出结果。
示例代码:java.int num = 6;if (num % 2 == 0) {。
System.out.println(num + "是偶数。
");} else {。
System.out.println(num + "不是偶数。
");}。
3. 求一个数的阶乘。
描述,编写一个程序,计算一个正整数的阶乘,并输出结果。
示例代码:java.int num = 5;int factorial = 1;for (int i = 1; i <= num; i++) {。
factorial = i;}。
System.out.println(num + "的阶乘为," + factorial);4. 判断一个字符串是否为回文字符串。
描述,编写一个程序,判断一个字符串是否为回文字符串,并输出结果。
示例代码:java.String str = "level";boolean isPalindrome = true;for (int i = 0; i < str.length() / 2; i++) {。
if (str.charAt(i) != str.charAt(str.length() 1 i)) {。
isPalindrome = false;break;}。
java项目代码
Java项目代码一、什么是Java项目代码Java项目代码是使用Java编程语言编写的程序源代码,用于创建、实现和管理Java应用程序。
Java是一种面向对象的编程语言,它的代码是通过编写类、方法和变量来组织的。
Java项目代码可以用于开发各种类型的应用程序,包括桌面应用程序、Web应用程序、移动应用程序等。
二、Java项目代码的特点Java项目代码具有以下几个特点:1. 可移植性Java是一种跨平台的编程语言,可以在不同的操作系统和硬件平台上运行。
这意味着通过编写一次Java项目代码,可以在多个平台上部署和运行应用程序,而无需针对不同平台编写不同的代码。
2. 面向对象Java是一种面向对象的编程语言,它支持面向对象的编程范式,包括封装、继承和多态等特性。
这使得Java项目代码更易于理解、维护和扩展。
3. 垃圾回收Java项目代码使用垃圾回收机制来自动管理内存。
在Java中,不需要手动分配和释放内存,虚拟机会自动检测和回收不再使用的对象,从而减少程序员的工作量和错误。
4. 强类型Java是一种强类型的编程语言,它要求变量在使用之前必须声明其类型,并且不允许隐式类型转换。
这种严格的类型检查提高了代码的可读性和可靠性。
5. 多线程支持Java项目代码可以利用Java提供的多线程机制实现并发处理。
多线程可以使应用程序同时执行多个任务,提高程序的运行效率和响应性。
三、如何编写Java项目代码要编写Java项目代码,需要遵循以下几个步骤:1. 确定项目需求在编写Java项目代码之前,需要明确项目的需求和目标。
这包括确定项目的功能和特性,以及所用到的技术和工具。
2. 设计项目架构在开始编写代码之前,需要进行项目架构的设计。
这包括确定项目的模块和组件,设计类的结构和关系,以及确定数据流和业务逻辑。
3. 编写代码根据项目的需求和架构设计,编写Java项目代码。
在编写代码时,需要遵循代码规范和最佳实践,使代码具有良好的可读性和可维护性。
JAVA小程序—贪吃蛇源代码
JAVA贪吃蛇源代码SnakeGame。
javapackage SnakeGame;import javax.swing。
*;public class SnakeGame{public static void main( String[]args ){JDialog。
setDefaultLookAndFeelDecorated( true ); GameFrame temp = new GameFrame();}}Snake.javapackage SnakeGame;import java。
awt.*;import java。
util。
*;class Snake extends LinkedList{public int snakeDirection = 2;public int snakeReDirection = 4;public Snake(){this。
add( new Point( 3, 3 ));this。
add(new Point(4, 3 ));this.add( new Point(5,3 ) );this。
add( new Point(6,3 ) );this。
add(new Point(7,3 ));this。
add( new Point( 8,3 ) );this。
add( new Point( 9, 3 ));this。
add( new Point( 10,3 ));}public void changeDirection( Point temp, int direction ) {this。
snakeDirection = direction;switch(direction ){case 1://upthis.snakeReDirection = 3;this。
add( new Point(temp.x,temp.y - 1 ));break;case 2://rightthis。
计算机程序源代码
import javax.swing.*;import java.awt.*;import javax.swing.border.*;import java.awt.event.*;public class SX7{JTextField field;JFrame f;JButton b;JLabel label;JPanel p1;JButton bb1,bb2,bb3;ActionListener h;Color cor1,cor2;Container con;GridBagLayout g;GridBagConstraints c;int gridx,gridy,gridwidth,gridheight,anchor,fill,ipadx,ipady;double weightx,weighty;Insets inset;Font t;boolean k1,/*控制字符的连续输出*/z,/*实现除零对其它按键的控制*/mh=true;/*保存控制显示*/ String op1,op2,r,ch,tf,str7,str11;Double r1,n1,n2,a,str8,str9,str10;int k,/*控制运算*/counter1,/*控制操作符*/counter2;/*控制连续运算*/SX7(){try{UIManager.setLookAndFeel(UIManager.getSystemLookAndFeelClassName());}catch(Exception e){}makeJFrame();//添加JFrameaddmakeBarMenu();//添加菜单栏addButton();//添加组件f.setVisible(true);}private void addButton(){JPanel p=new JPanel();p1=new JPanel();p.setLayout(new GridLayout(1,4,3,6));p1.setLayout(new GridLayout(4,6,3,6));g=new GridBagLayout();con.setLayout(g);anchor=GridBagConstraints.CENTER;//当组件小于其显示区域时使用此字段。
Java 小程序连连看源代码
public void reload() {
int save[] = new int[30];
int n=0,cols,rows;
int grid[][]= new int[8][7];
for(int i=0;i<=6;i++) {
for(int j=0;j<=5;j++) {
resetButton.addActionListener(this);
newlyButton=new JButton("再来一局");
newlyButton.addActionListener(this);
southPanel.add(exitButton);
southPanel.add(resetButton);
thisContainer.add(southPanel,"South");
thisContainer.add(northPanel,"North");
centerPanel.setLayout(new GridLayout(6,5));
for(int cols = 0;cols < 6;cols++){
Container thisContainer;
JPanel centerPanel,southPanel,northPanel; //子面板
JButton diamondsButton[][] = new JButton[6][5];//游戏按钮数组
JButton exitButton,resetButton,newlyButton; //退出,重列,重新开始按钮
java程序积木源代码
旋转流程控制
加速下降流程控制
开始流程控制(Timer)
暂停流程控制
继续流程控制
结束流程控制
修改键盘事件
修改paintScore方法
Person I;
Person you;
I.love(you);
4 严格测试结果! TestCase
1) 如果"能够下落", 就下落一步
2) 否则就"着陆到墙里面"
3) 着落以后, "销毁充满的行", 并且记分
4) "检查游戏结束"了吗?
左右移动流程控制
分数计算
界面的绘制
键盘事件控制
就会固定在该处,而新的方块出现在区域上方开始落下。
(3)当区域中某一列横向格子全部由方块填满,则该行会消失
并成为玩家的得分。同时删除的行数越多,得分指数上升。
(4)当固定的方块堆到区域最上方而无法消除层数时,
则游戏结束。
(6)一般来说,游戏还会提示下一个要落下的方块,
熟练的玩家会计算到下一个方块,评估要如何进行。
由于游戏能不断进行下去对商业用游戏不太理想,
所以一般还会随着游戏的进行而加速提高难度。
(7)预先设置的随机发生器不断地输出单个方块到场地顶部
2 业务分析
找到有哪些业务对象根据图片的分析
tetris(俄罗斯方块)
|-- score 累计分数
|-- lines 销毁的行数
|-- 4 cell
3 数据模型, 一切业务对象转换为数字表示
场地按照行列划分为 20×10格子
格子有属性row, col, color
JAVA语言程序设计清华大学出版社书上例题源代码第二章
【2_1】//计算二个数的和class Example2_1 {public static void main(String args[]) {int x,y,s;x = 3;y = 5;s =x+y; //求和System.out.println("二数之和为:" + s);}}【2_2】//计算圆的面积class Example2_2 {public static void main(String args[]) {double pi,r,s;r = 10.8; //圆的半径pi = 3.1416;s = pi * r * r; //计算面积System.out.println("圆的面积为:" + s);}}【2_3】/* char 变量的用法*/class Example2_3 {public static void main(String args[]) {char ch1,ch2;ch1 = 88; // code for Xch2 = 'Y';System.out.print("ch1 and ch2:");System.out.println(ch1 + " " + ch2);}}【2_4】/* 布尔类型的用法*/class Example2_4 {public static void main(String args[]) {boolean b;b = false;System.out.println("b is " + b);b = true;System.out.println("b is " + b);// outcome of a relational operator is a boolean valueSystem.out.println("10 > 9 is " + (10 > 9));}}【2_5】public class Example2_5{public static void main(String[] agrs){//定义几个变量并赋值int a=41;int b=21;double x=6.4;double y=3.22;System.out.println("变量数值:");System.out.println("a="+a);System.out.println("b="+b);System.out.println("x="+x);System.out.println("y="+y);//加法System.out.println("加:");System.out.println("a+b="+(a+b));System.out.println("x+y="+(x+y));//减法System.out.println("减:");System.out.println("a-b="+(a-b));System.out.println("x-y="+(x-y));//乘法System.out.println("乘:");System.out.println("a*b="+(a*b));System.out.println("x*y="+(x*y));//除法System.out.println("除:");System.out.println("a/b="+(a/b));System.out.println("x/y="+(x/y));//从除法中求得余数System.out.println("计算余数:");System.out.println("a%b="+(a%b));System.out.println("x%y="+(x%y));//混合类型System.out.println("混合类型:");System.out.println("b+y="+(b+y));System.out.println("a*x="+(a*x));}}public class Example2_6{public static void main(String[] args){//定义若干整型数int i=37;int j=42;int k=42;System.out.println("变量数值");System.out.println("i="+i);System.out.println("j="+j);System.out.println("k="+k);//大于System.out.println("大于:");System.out.println("i>j="+(i>j));//falseSystem.out.println("j>i="+(j>i));//trueSystem.out.println("k>j="+(k>j));//false//大于等于System.out.println("大于等于:");System.out.println("i>=j="+(i>=j));//falseSystem.out.println("j>=i="+(j>=i));//trueSystem.out.println("k>=j="+(k>=j));//true//小于System.out.println("小于:");System.out.println("i<j="+(i<j));//trueSystem.out.println("j<i="+(j<i));//falseSystem.out.println("k<j="+(k<j));//false//小于等于System.out.println("小于等于:");System.out.println("i<=j="+(i<=j));//trueSystem.out.println("j<=i="+(j<=i));//falseSystem.out.println("k<=j="+(k<=j));//false//等于System.out.println("等于:");System.out.println("i==j="+(i==j));//falseSystem.out.println("k==j="+(k==j));//true//不等于System.out.println("不等于:");System.out.println("i!=j="+(i!=j));//trueSystem.out.println("k!=j="+(k!=j));//false}}class Example2_7{public static void main(String args[]){//字符char a1='银',a2='行',a3='帐',a4='号';//密鈅char secret='x';//异或运算加密a1=(char)(a1^secret); a2=(char)(a2^secret);a3=(char)(a3^secret); a4=(char)(a4^secret);System.out.println("密文:"+a1+a2+a3+a4);//再一次异或运算解密a1=(char)(a1^secret); a2=(char)(a2^secret);a3=(char)(a3^secret); a4=(char)(a4^secret);System.out.println("原文:"+a1+a2+a3+a4);}}【2_8】/* if结构*/public class Example2_8{public static void main(String args[]){int a=9,b=5,c=7,t;if(a>b){t=a; a=b; b=t;}if(a>c){t=a; a=c; c=t;}if(b>c){t=b; b=c; c=t;}System.out.println("a="+a+",b="+b+",c="+c);}}/* if-else-if 结构. */class Example2_9 {public static void main(String args[]) {int month = 4; // 4月份String season;if(month == 12 || month == 1 || month == 2){season = "冬天";}else if(month == 3 || month == 4 || month == 5){season = "春天"; }else if(month == 6 || month == 7 || month == 8){season = "夏天"; }else if(month == 9 || month == 10 || month == 11){season = "秋天"; }else{ season = "不合法的月份"; }System.out.println("4月是" + season + ".");}}【2_10】/* switch开关语句*/import java.applet.*;import java.awt.*;public class Example2_10 extends Applet{public void paint(Graphics g){int x=1,y=1;switch(x+y){case 1 :g.setColor(Color.red);g.drawString("i am 1",5,10);break;case 2:g.setColor(Color.blue);g.drawString("i am 2",5,10);// break;case 3:g.setColor(Color.green);g.drawString("i am 3",5,10);break;default:g.drawString("没有般配的",5,10);}}/*<APPLET CODE="Example2_10.class" WIDTH="200" HEIGHT="300"></APPLET>*/【2_11】/* for循环*/import javax.swing.JOptionPane;public class Example2_11{public static void main(String[] args){ int sum=0;for(int i=1;i<=100;i++){sum=sum+i;}JOptionPane.showMessageDialog(null,"1+2+3+...+100= "+sum);System.exit(0); //退出程序}}【2_12】/* while循环*/import javax.swing.JOptionPane;public class Example2_12{public static void main(String[] args){int s=1, i=1;while(i<=10){s=s*i;i++;}JOptionPane.showMessageDialog(null,"1*2*3*...*10= "+s);System.exit(0); //退出程序}}/* do-while循环*/import java.applet.*;import java.awt.*;public class Example2_13 extends Applet{public void paint(Graphics g){int i=1;do{g.drawOval(110-i*10,110-i*10,i*20,i*20);i++;}while(i<=10);}}/*<APPLET CODE="Example2_13.class" WIDTH="300" HEIGHT="300"></APPLET>*/【2_14】/* 使用break语句跳出循环 */import javax.swing.JOptionPane;class Example2_14{public static void main(String args[]){for(int i=0; i<100; i++){if(i == 10) break; // i=10时跳出循环JOptionPane.showMessageDialog(null,"i="+i);}JOptionPane.showMessageDialog(null,"循环已经结束!");System.exit(0); //退出程序}}/* 使用break语句跳出内循环 */class Example2_15{public static void main(String args[]){for(int i=1; i<6; i++){for(int j=1;j<3; j++){if(i == 3) break; // i=5时跳出循环int sum=i+j;System.out.println(i+"+"+j+"="+sum);}}System.out.println("循环已经结束!");}}【2_16】/* 使用"标签化中断"的break语句跳出循环 */class Example2_16{public static void main(String args[]){out: for(int i=1; i<6; i++) //设置标号{for(int j=1;j<3; j++){if(i == 3) break out; // i=3时跳出循环int sum=i+j;System.out.println(i+"+"+j+"="+sum);}}System.out.println("循环已经结束!");}}【2_17】/*continue语句打印三角形*/import javax.swing.JOptionPane;class Example2_17 {public static void main(String args[]) {String output="";for(int i=0; i<5; i++) {for(int j=0; j<5; j++) {if(j > i) {continue ;}output= output +"*"+" ";}output=output+"\n";}JOptionPane.showMessageDialog(null,output);System.exit(0);}}【2_18】/* 求一组数字的平均值*/import javax.swing.JOptionPane;class Example2_18 {public static void main(String args[]) {double nums[] = {10.1, 11.2, 12.3, 13.4, 14.5};double result = 0;for(int i=0; i<5; i++){result = result + nums[i]; }JOptionPane.showMessageDialog(null,"平均值为:" + result / 5);System.exit(0);}}【2_19】// 二维数组赋值class Example2_19{public static void main(String args[]) {int twoD[][]= new int[4][5];int i, j, k = 0;for(i=0; i<4; i++)for(j=0; j<5; j++) {twoD[i][j] = k;k++;}for(i=0; i<4; i++) {for(j=0; j<5; j++)System.out.print(twoD[i][j] + " ");System.out.println();}}}【2_20】import java.util.*;class Example2_20{public static void main(String[] args){Vector v1 =new Vector();for (int i=1;i<10;i++){v1.addElement(" " + i);System.out.println(v1.toString());}v1.insertElementAt("abc",5);System.out.println("\n插入元素:"+v1.toString());}}【2_21】import java.util.*;public class Example2_21{ public static void main(String args[]){ String s="boy,java,Applet girl,Hat";StringTokenizer st=new StringTokenizer(s," ,"); //空格和逗号做分int number=st.countTokens();while(st.hasMoreTokens()){ String str=st.nextToken();System.out.println(str);}System.out.println("s共有单词:"+number+"个");}}。
java常用代码(20条案例)
java常用代码(20条案例)1. 输出Hello World字符串public class Main {public static void main(String[] args) {// 使用System.out.println()方法输出字符串"Hello World"System.out.println("Hello World");}}2. 定义一个整型变量并进行赋值public class Main {public static void main(String[] args) {// 定义一个名为num的整型变量并将其赋值为10int num = 10;// 使用System.out.println()方法输出变量num的值System.out.println(num);}}3. 循环打印数字1到10public class Main {public static void main(String[] args) {// 使用for循环遍历数字1到10for (int i = 1; i <= 10; i++) {// 使用System.out.println()方法输出每个数字System.out.println(i);}}}4. 实现输入输出import java.util.Scanner;public class Main {public static void main(String[] args) {// 创建一个Scanner对象scanner,以便接受用户的输入Scanner scanner = new Scanner(System.in);// 使用scanner.nextLine()方法获取用户输入的字符串String input = scanner.nextLine();// 使用System.out.println()方法输出输入的内容System.out.println("输入的是:" + input);}}5. 实现条件分支public class Main {public static void main(String[] args) {// 定义一个整型变量num并将其赋值为10int num = 10;// 使用if语句判断num是否大于0,如果是,则输出"这个数是正数",否则输出"这个数是负数"if (num > 0) {System.out.println("这个数是正数");} else {System.out.println("这个数是负数");}}}6. 使用数组存储数据public class Main {public static void main(String[] args) {// 定义一个整型数组nums,其中包含数字1到5int[] nums = new int[]{1, 2, 3, 4, 5};// 使用for循环遍历数组for (int i = 0; i < nums.length; i++) {// 使用System.out.println()方法输出每个数组元素的值System.out.println(nums[i]);}}}7. 打印字符串长度public class Main {public static void main(String[] args) {// 定义一个字符串变量str并将其赋值为"HelloWorld"String str = "Hello World";// 使用str.length()方法获取字符串的长度,并使用System.out.println()方法输出长度System.out.println(str.length());}}8. 字符串拼接public class Main {public static void main(String[] args) {// 定义两个字符串变量str1和str2,并分别赋值为"Hello"和"World"String str1 = "Hello";String str2 = "World";// 使用"+"号将两个字符串拼接成一个新字符串,并使用System.out.println()方法输出拼接后的结果System.out.println(str1 + " " + str2);}}9. 使用方法进行多次调用public class Main {public static void main(String[] args) {// 定义一个名为str的字符串变量并将其赋值为"Hello World"String str = "Hello World";// 调用printStr()方法,打印字符串变量str的值printStr(str);// 调用add()方法,计算两个整数的和并输出结果int result = add(1, 2);System.out.println(result);}// 定义一个静态方法printStr,用于打印字符串public static void printStr(String str) {System.out.println(str);}// 定义一个静态方法add,用于计算两个整数的和public static int add(int a, int b) {return a + b;}}10. 使用继承实现多态public class Main {public static void main(String[] args) {// 创建一个Animal对象animal,并调用move()方法Animal animal = new Animal();animal.move();// 创建一个Dog对象dog,并调用move()方法Dog dog = new Dog();dog.move();// 创建一个Animal对象animal2,但其实际指向一个Dog对象,同样调用move()方法Animal animal2 = new Dog();animal2.move();}}// 定义一个Animal类class Animal {public void move() {System.out.println("动物在移动");}}// 定义一个Dog类,继承自Animal,并重写了move()方法class Dog extends Animal {public void move() {System.out.println("狗在奔跑");}}11. 输入多个数并求和import java.util.Scanner;public class Main {public static void main(String[] args) {// 创建一个Scanner对象scanner,以便接受用户的输入Scanner scanner = new Scanner(System.in);// 定义一个整型变量sum并将其赋值为0int sum = 0;// 使用while循环持续获取用户输入的整数并计算总和,直到用户输入为0时结束循环while (true) {System.out.println("请输入一个整数(输入0退出):");int num = scanner.nextInt();if (num == 0) {break;}sum += num;}// 使用System.out.println()方法输出总和System.out.println("所有输入的数的和为:" + sum);}}12. 判断一个年份是否为闰年import java.util.Scanner;public class Main {public static void main(String[] args) {// 创建一个Scanner对象scanner,以便接受用户的输入Scanner scanner = new Scanner(System.in);// 使用scanner.nextInt()方法获取用户输入的年份System.out.println("请输入一个年份:");int year = scanner.nextInt();// 使用if语句判断年份是否为闰年,如果是,则输出"是闰年",否则输出"不是闰年"if ((year % 4 == 0 && year % 100 != 0) || year % 400 == 0) {System.out.println(year + "年是闰年");} else {System.out.println(year + "年不是闰年");}}}13. 使用递归实现斐波那契数列import java.util.Scanner;public class Main {public static void main(String[] args) {// 创建一个Scanner对象scanner,以便接受用户的输入Scanner scanner = new Scanner(System.in);// 使用scanner.nextInt()方法获取用户输入的正整数nSystem.out.println("请输入一个正整数:");int n = scanner.nextInt();// 使用for循环遍历斐波那契数列for (int i = 1; i <= n; i++) {System.out.print(fibonacci(i) + " ");}}// 定义一个静态方法fibonacci,使用递归计算斐波那契数列的第n项public static int fibonacci(int n) {if (n <= 2) {return 1;} else {return fibonacci(n - 1) + fibonacci(n - 2);}}}14. 输出九九乘法表public class Main {public static void main(String[] args) {// 使用两层for循环打印九九乘法表for (int i = 1; i <= 9; i++) {for (int j = 1; j <= i; j++) {System.out.print(j + "*" + i + "=" + (i * j) + "\t");}System.out.println();}}}15. 使用try-catch-finally处理异常import java.util.Scanner;public class Main {public static void main(String[] args) {// 创建一个Scanner对象scanner,以便接受用户的输入Scanner scanner = new Scanner(System.in);try {// 使用scanner.nextInt()方法获取用户输入的整数a和bSystem.out.println("请输入两个整数:");int a = scanner.nextInt();int b = scanner.nextInt();// 对a进行除以b的运算int result = a / b;// 使用System.out.println()方法输出结果System.out.println("计算结果为:" + result);} catch (ArithmeticException e) {// 如果除数为0,会抛出ArithmeticException异常,捕获异常并使用System.out.println()方法输出提示信息System.out.println("除数不能为0");} finally {// 使用System.out.println()方法输出提示信息System.out.println("程序结束");}}}16. 使用集合存储数据并遍历import java.util.ArrayList;import java.util.List;public class Main {public static void main(String[] args) {// 创建一个名为list的List集合,并添加多个字符串元素List<String> list = new ArrayList<>();list.add("Java");list.add("Python");list.add("C++");list.add("JavaScript");// 使用for循环遍历List集合并使用System.out.println()方法输出每个元素的值for (int i = 0; i < list.size(); i++) {System.out.println(list.get(i));}}}17. 使用Map存储数据并遍历import java.util.HashMap;import java.util.Map;public class Main {public static void main(String[] args) {// 创建一个名为map的Map对象,并添加多组键值对Map<Integer, String> map = new HashMap<>();map.put(1, "Java");map.put(2, "Python");map.put(3, "C++");map.put(4, "JavaScript");// 使用for-each循环遍历Map对象并使用System.out.println()方法输出每个键值对的值for (Map.Entry<Integer, String> entry :map.entrySet()) {System.out.println("key=" + entry.getKey() + ", value=" + entry.getValue());}}}18. 使用lambda表达式进行排序import java.util.ArrayList;import java.util.Collections;import parator;import java.util.List;public class Main {public static void main(String[] args) {// 创建一个名为list的List集合,并添加多个字符串元素List<String> list = new ArrayList<>();list.add("Java");list.add("Python");list.add("C++");list.add("JavaScript");// 使用lambda表达式定义Comparator接口的compare()方法,按照字符串长度进行排序Comparator<String> stringLengthComparator = (s1, s2) -> s1.length() - s2.length();// 使用Collections.sort()方法将List集合进行排序Collections.sort(list, stringLengthComparator);// 使用for-each循环遍历List集合并使用System.out.println()方法输出每个元素的值for (String str : list) {System.out.println(str);}}}19. 使用线程池执行任务import java.util.concurrent.ExecutorService;import java.util.concurrent.Executors;public class Main {public static void main(String[] args) {// 创建一个名为executor的线程池对象,其中包含2个线程ExecutorService executor =Executors.newFixedThreadPool(2);// 使用executor.execute()方法将多个Runnable任务加入线程池中进行执行executor.execute(new MyTask("任务1"));executor.execute(new MyTask("任务2"));executor.execute(new MyTask("任务3"));// 调用executor.shutdown()方法关闭线程池executor.shutdown();}}// 定义一个MyTask类,实现Runnable接口,用于代表一个任务class MyTask implements Runnable {private String name;public MyTask(String name) { = name;}@Overridepublic void run() {System.out.println("线程" +Thread.currentThread().getName() + "正在执行任务:" + name);try {Thread.sleep(2000);} catch (InterruptedException e) {e.printStackTrace();}System.out.println("线程" +Thread.currentThread().getName() + "完成任务:" + name);}}20. 使用JavaFX创建图形用户界面import javafx.application.Application;import javafx.scene.Scene;import javafx.scene.control.Button;import yout.StackPane;import javafx.stage.Stage;public class Main extends Application {@Overridepublic void start(Stage primaryStage) throws Exception { // 创建一个Button对象btn,并设置按钮名称Button btn = new Button("点击我");// 创建一个StackPane对象pane,并将btn添加到pane中StackPane pane = new StackPane();pane.getChildren().add(btn);// 创建一个Scene对象scene,并将pane作为参数传入Scene scene = new Scene(pane, 200, 100);// 将scene设置为primaryStage的场景primaryStage.setScene(scene);// 将primaryStage的标题设置为"JavaFX窗口"primaryStage.setTitle("JavaFX窗口");// 调用primaryStage.show()方法显示窗口primaryStage.show();}public static void main(String[] args) { launch(args);}}。
JAVA代码大全
. 命令行参数 . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . .
. Arrays . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . .
方 法
. 输入方法演示 . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . .
. 统计学生成绩 . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . .
. ASCII 码表 . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . .
. 乘法表 . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . .
. Course . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . .
. 整数栈 . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . .
System.out.println(”Hello, World!”);
}
Java经典基础代码
Monkey_peach代码package com.sailor.game;/*** 题目:猴子吃桃问题:猴子第一天摘下若干个桃子,当即吃了一半,还不瘾,又多吃了一个第二天早上又将剩* 下的桃子吃掉一半,又多吃了一个。
以后每天早上都吃了前一天剩下的一半零一个。
到第10天早上想再吃时,见只剩下一个桃子了。
求第一天共摘了多少。
* 程序分析:采取逆向思维的方法,从后往前推断。
** @author Sailor**/public class Monkey_Peach {public static void main(String[] args) {int[] peach = new int[10];peach[9] = 1;// 下面利用的是数组和循环将每天的桃子数量都求出来了for (int i = peach.length - 1; i > 0; i--) {peach[i - 1] = 2 * (peach[i] + 1);}for (int i = 0; i < peach.length; i++) {System.out.println(peach[i]);}System.out.println("第一天的桃子数:"+getPeach_Num(10, 1));}// 利用递归的方法来求第一天的桃子数,输入参数为天数和当天的桃子数,输出为第一天桃子数public static int getPeach_Num(int day, int peach_num) {if (day == 1)return peach_num;else if (day < 1 || peach_num < 0)return 0;elsereturn getPeach_Num(day - 1, (peach_num + 1) * 2);}}package com.sailor.game;/*** 题目:猴子吃桃问题:猴子第一天摘下若干个桃子,当即吃了一半,还不瘾,又多吃了一个第二天早上又将剩* 下的桃子吃掉一半,又多吃了一个。
java编写双色球源代码。-----系统作为彩票双色球生成器,模拟机选一注双色球的彩票号码
java编写双⾊球源代码。
-----系统作为彩票双⾊球⽣成器,模拟机选⼀注双⾊球的彩票号码package demo2;import java.util.Arrays;import java.util.Random;/*** 系统作为彩票双⾊球⽣成器,模拟机选⼀注双⾊球的彩票号码:* 1、需要从“01”到“32”中随机选择出6个数字作为红⾊球且这6个数字不能重复;* 2、并从”01”到”07”中随机选择⼀个数字作为蓝⾊球;* 3、7个数字合到⼀起作为⼀注双⾊球彩票的号码;*/public class DoubleBall {public static void main(String[] args) {String[] RED_BALLS = { "01", "02", "03", "04", "05", "06", "07", "08","09", "10", "11", "12", "13", "14", "15", "16", "17", "18","19", "20", "21", "22", "23", "24", "25", "26", "27", "28","29", "30", "31", "32" };String[] BLUE_BALLS = { "01", "02", "03", "04", "05", "06", "07" };boolean[] redFlags = new boolean[RED_BALLS.length];String[] redBalls = new String[6];String blueBall;Random ran = new Random();// redfor (int i = 0; i < redBalls.length; i++) {int index;do {index = ran.nextInt(RED_BALLS.length);} while (redFlags[index]);/*** redFlags[index]⽤途:* 当redFlags[index]=true表⽰已经重复,所以你需要* 再执⾏do当中的代码重新获取index*/redBalls[i] = RED_BALLS[index];redFlags[index] = true;}// blueblueBall = BLUE_BALLS[ran.nextInt(BLUE_BALLS.length)];Arrays.sort(redBalls);System.out.println("**********本期开奖**********");System.out.println("红球: ");for (int i = 0; i < redBalls.length; i++) {System.out.print("(" + redBalls[i] + ") ");}System.out.println();System.out.println("篮球: ");System.out.print("(" + blueBall + ") ");}}。
java课程设计及源代码
java课程设计及源代码一、课程目标知识目标:1. 让学生掌握Java编程语言的基本语法和结构,包括变量声明、数据类型、运算符、控制流程(循环、分支)等。
2. 培养学生运用面向对象编程思想,包括类的定义、对象的创建、封装、继承和多态等。
3. 引导学生了解Java常用的集合框架,如List、Set、Map等,并掌握其基本使用方法。
4. 让学生掌握基本的异常处理和文件操作。
技能目标:1. 培养学生独立编写Java程序的能力,并能解决实际问题。
2. 培养学生阅读和分析他人代码的能力,提高合作开发时的沟通效率。
3. 提高学生运用Java编程语言进行项目设计和开发的能力。
情感态度价值观目标:1. 培养学生对编程的兴趣,激发学生的学习热情。
2. 培养学生具有良好的编程习惯,严谨的编程态度和团队协作精神。
3. 引导学生认识到编程对解决现实问题的重要性,增强社会责任感。
分析课程性质、学生特点和教学要求,本课程目标将分解为以下具体学习成果:1. 学生能够独立编写简单的Java程序,如计算器、九九乘法表等。
2. 学生能够阅读和分析复杂Java程序,如学生管理系统、图书管理系统等。
3. 学生能够运用所学知识,设计并实现一个简单的Java项目,如小型游戏、实用工具等。
4. 学生在编程过程中,能够遵循编程规范,具有良好的编程习惯,并具备一定的团队协作能力。
二、教学内容1. Java基本语法和数据类型:包括变量声明、赋值,基本数据类型(整型、浮点型、字符型、布尔型),类型转换。
2. 控制流程:介绍Java中的分支结构(if-else、switch-case)和循环结构(for、while、do-while)。
3. 面向对象编程:类的定义、构造方法、成员变量、成员方法、封装、继承、多态、抽象类和接口。
4. 常用集合框架:List(ArrayList、LinkedList)、Set(HashSet、TreeSet)、Map(HashMap、TreeMap)的基本使用。
魔方源代码-Java Applet小程序
local0 = vNorm(ad, i);
ad[i] = ad[i] / local0;
ad[i + 1] = ad[i + 1] / local0;
ad[i + 2] = ad[i + 2] / local0;
}
public void scalMult(double ad[], int i, double d)
buffer = new int[12];
nearSide = new int[12];
light = new double[3];
Teye = new double[3];
TeX = new double[3];
TeY = new double[3];
currDragDir = new double[2];
final int colDir[] = { -1, -1, 1, -1, 1, -1 };
final int circleOrder[] = { 0, 1, 2, 5, 8, 7, 6, 3 };
int topBlocks[];
int botBlocks[];
int sideCols[];
int sideW;
ad2[j + 2] -= ad1[i + 2];
}Hale Waihona Puke public void copyVec(double ad1[], int i, double ad2[], int j)
{
ad2[j] = ad1[i];
ad2[j + 1] = ad1[i + 1];
ad2[j + 2] = ad1[i + 2];
java经典代码(最全面)
Java实现ftp功能import .ftp.*;import .*;import java.awt.*;import java.awt.event.*;import java.applet.*;import java.io.*;public class FtpApplet extends Applet{FtpClient aftp;DataOutputStream outputs ;TelnetInputStream ins;TelnetOutputStream outs;TextArea lsArea;Label LblPrompt;Button BtnConn;Button BtnClose;TextField TxtUID;TextField TxtPWD;TextField TxtHost;int ch;public String a="没有连接主机";String hostname="";public void init () {setBackground(Color.white);setLayout(new GridBagLayout()); GridBagConstraints GBC = new GridBagConstraints( );LblPrompt = new Label("没有连接主机"); LblPrompt.setAlignment(Label.LEFT);BtnConn = new Button("连接");BtnClose = new Button("断开");BtnClose.enable(false);TxtUID = new TextField("",15);TxtPWD = new TextField("",15);TxtPWD.setEchoCharacter(’*’);TxtHost = new TextField("",20);Label LblUID = new Label("User ID:");Label LblPWD = new Label("PWD:");Label LblHost = new Label("Host:");lsArea = new TextArea(30,80); lsArea.setEditable(false);GBC.gridwidth= GridBagConstraints.REMAINDER; GBC.fill = GridBagConstraints.HORIZONTAL; ((GridBagLayout)getLayout()).setConstraints(LblPro mpt,GBC);add(LblPrompt);GBC.gridwidth=1;((GridBagLayout)getLayout()).setConstraints(LblHost ,GBC);add(LblHost);GBC.gridwidth=GridBagConstraints.REMAINDER; ((GridBagLayout)getLayout()).setConstraints(TxtHost ,GBC);add(TxtHost);GBC.gridwidth=1;((GridBagLayout)getLayout()).setConstraints(LblUID ,GBC);add(LblUID);GBC.gridwidth=1;((GridBagLayout)getLayout()).setConstraints(TxtUID ,GBC);add(TxtUID);GBC.gridwidth=1;((GridBagLayout)getLayout()).setConstraints(LblPW D,GBC);add(LblPWD);GBC.gridwidth=1;((GridBagLayout)getLayout()).setConstraints(TxtPW D,GBC);add(TxtPWD);GBC.gridwidth=1;GBC.weightx=2;((GridBagLayout)getLayout()).setConstraints(BtnCon n,GBC);add(BtnConn);GBC.gridwidth=GridBagConstraints.REMAINDER;((GridBagLayout)getLayout()).setConstraints(BtnClos e,GBC);add(BtnClose);GBC.gridwidth=GridBagConstraints.REMAINDER; GBC.fill = GridBagConstraints.HORIZONTAL; ((GridBagLayout)getLayout()).setConstraints(lsArea, GBC);add(lsArea);}public boolean connect(String hostname, String uid,St ring pwd){this.hostname = hostname;LblPrompt.setText("正在连接,请等待.....");try{aftp =new FtpClient(hostname);aftp.login(uid,pwd);aftp.binary();showFileContents();}catch(FtpLoginException e){a="无权限与主机:"+hostname+"连接!"; LblPrompt.setText(a);return false;}catch (IOException e){a="连接主机:"+hostname+"失败!";LblPrompt.setText(a);return false;}catch(SecurityException e){a="无权限与主机:"+hostname+"连接!"; LblPrompt.setText(a);return false;}LblPrompt.setText("连接主机:"+hostname+"成功!"); return true;}public void stop(){try{aftp.closeServer(); }catch(IOException e){}}public void paint(Graphics g){}public boolean action(Event evt,Object obj){if (evt.target == BtnConn){LblPrompt.setText("正在连接,请等待.....");if (connect(TxtHost.getText(),TxtUID.getText(),TxtP WD.getText())){BtnConn.setEnabled(false);BtnClose.setEnabled(true);}return true;}if (evt.target == BtnClose){stop();BtnConn.enable(true);BtnClose.enable(false);LblPrompt.setText("与主机"+hostname+"连接已断开!");return true;}return super.action(evt,obj);}public boolean sendFile(String filepathname){ boolean result=true;if (aftp != null){LblPrompt.setText("正在粘贴文件,请耐心等待....");String contentperline;try{a="粘贴成功!";String fg =new String("\\");int index = stIndexOf(fg);String filename = filepathname.substring(index+1); File localFile ;localFile = new File(filepathname) ; RandomAccessFile sendFile = new RandomAccessFil e(filepathname,"r");//sendFile.seek(0);outs = aftp.put(filename);outputs = new DataOutputStream(outs);while (sendFile.getFilePointer() < sendFile.length() ) {ch = sendFile.read();outputs.write(ch);}outs.close();sendFile.close();}catch(IOException e){a = "粘贴失败!";result = false ;}LblPrompt.setText(a);showFileContents();}else{result = false;}return result;}public void showFileContents(){StringBuffer buf = new StringBuffer();lsArea.setText("");try{ins= aftp.list();while ((ch=ins.read())>=0){buf.append((char)ch);}lsArea.appendText(buf.toString());ins.close();} catch(IOException e){}}public static void main(String args[]){Frame f = new Frame("FTP Client");f.addWindowListener(new WindowAdapter() {public void windowClosing(WindowEvent e ){System.exit(0);}});FtpApplet ftp = new FtpApplet();ftp.init();ftp.start();f.add(ftp);f.pack();f.setVisible(true);}}Java URL编程import java.io.*;import .*;////// GetHost.java////public class GetHost{public static void main (String arg[]){if (arg.length>=1){InetAddress[] Inet;int i=1;try{for (i=1;i<=arg.length;i++){Inet = InetAddress.getAllByName(arg[i-1]);for (int j=1;j<=Inet.length;j++){System.out.print(Inet[j-1].toString());System.out.print("\n");}}}catch(UnknownHostException e){System.out.print("Unknown HostName!"+arg[i-1]); }}else{System.out.print("Usage java/jview GetIp <hostname >");}}}</pre></p><p><pre><font color=red>Example 2</font><a href="GetHTML.java">download now</a>//GetHTML.java/*** This is a program which can read information from a web server.* @version 1.0 2000/01/01* @author jdeveloper**/import .*;import java.io.*;public class GetHTML {public static void main(String args[]){if (args.length < 1){System.out.println("USAGE: java GetHTML httpaddr ess");System.exit(1);}String sURLAddress = new String(args[0]);URL url = null;try{url = new URL(sURLAddress);}catch(MalformedURLException e){System.err.println(e.toString());System.exit(1);}try{ InputStream ins = url.openStream();BufferedReader breader = new BufferedReader(new InputStreamReader(ins));String info = breader.readLine();while(info != null){System.out.println(info);info = breader.readLine();}}catch(IOException e){System.err.println(e.toString());System.exit(1);}}}Java RMI编程<b>Step 1: Implements the interface of Remote Serv er as SimpleCounterServer.java</b>public interface SimpleCounterServer extends java. rmi.Remote{public int getCount() throws java.rmi.RemoteExcep tion;}Compile it with javac SimpleCounterServer.java<b>Step 2: Produce the implement file SimpleCou nterServerImpl.java as</b>import java.rmi.*;import java.rmi.server.UnicastRemoteObject;////// SimpleCounterServerImpl////public class SimpleCounterServerImplextends UnicastRemoteObjectimplements SimpleCounterServer{private int iCount;public SimpleCounterServerImpl() throws java.rmi.RemoteException{iCount = 0;}public int getCount() throws RemoteException{return ++iCount;}public static void main(String args[]){System.setSecurityManager(new RMISecurityM anager());try{SimpleCounterServerImpl server = new Simpl eCounterServerImpl();System.out.println("SimpleCounterServer crea ted");Naming.rebind("SimpleCounterServer",server); System.out.println("SimpleCounterServer regi stered");}catch(RemoteException x){x.printStackTrace();}catch(Exception x){x.printStackTrace();}}}Complile it with javac SimpleCounterServerImpl.java<b>Step 3: Produce skeleton and stub file with rmic S impleCounterServerImpl</b>You will get two class files:1.SimpleCounterServerImpl_Stub.class2.SimpleCounterServerImpl_Skel.class<b>Step 4: start rmiregistry </b><b>Step 5: java SimpleCounterServerImpl</b> <b>Step 6: Implements the Client Applet to invoke th e Remote method</b>File :SimpleCounterApplet.java asimport java.applet.Applet;import java.rmi.*;import java.awt.*;////// SimpleCounterApplet////public class SimpleCounterApplet extends Applet {String message="";String message1 = "";public void init(){setBackground(Color.white);try{SimpleCounterServer sever = (SimpleCounter Server)Naming.lookup("//"+getCodeBase().getHost ()+"/SimpleCounterServer");message1 = "//"+getCodeBase().getHost()+"/S impleCounterServer";message = String.valueOf(sever.getCount()); }catch(Exception x){x.printStackTrace();message = x.toString();}}public void paint(Graphics g){g.drawString("Number is "+message,10,10);g.drawString("Number is "+message1,10,30);}}<b>step 7 create an Html File rmi.htm : </b>< html>< body>< applet code="SimpleCounterApplet.class" width="5 00" height="150">< /applet>< /body>< /html>Java CORBA入门Below is a simple example of a CORBA program download the source file<b>1. produce a idl file like this</b>hello.idlmodule HelloApp {interface Hello {string sayHello();};};<b>2. produce stub and skeleton files through idltojav a.exe</b>idltojava hello.idlidltojava is now named as idlj.exe and is included in the JDK.<b>3. write a server program like this </b>// HelloServer.javaimport HelloApp.*;import org.omg.CosNaming.*;import org.omg.CosNaming.NamingContextPackage. *;import org.omg.CORBA.*;import java.io.*;class HelloServant extends _HelloImplBase{public String sayHello(){return "\nHello world !!\n";}} public class HelloServer {public static void main(String args[]){try{// create and initialize the ORBORB orb = ORB.init(args, null);// create servant and register it with the ORBHelloServant helloRef = new HelloServant();orb.connect(helloRef);// get the root naming contextorg.omg.CORBA.Object objRef =orb.resolve_initial_references("NameService");NamingContext ncRef = NamingContextHelper.nar row(objRef);// bind the Object Reference in NamingNameComponent nc = new NameComponent("Hell o", "");NameComponent path[] = {nc};ncRef.rebind(path, helloRef);// wait for invocations from clientsng.Object sync = new ng.Object(); synchronized (sync) {sync.wait();}} catch (Exception e) {System.err.println("ERROR: " + e);e.printStackTrace(System.out);}}}<b>4. write a client program like this</b>// HelloClient.javaimport HelloApp.*;import org.omg.CosNaming.*;import org.omg.CORBA.*;public class HelloClient{public static void main(String args[]){try{// create and initialize the ORBORB orb = ORB.init(args, null);// get the root naming contextorg.omg.CORBA.Object objRef =orb.resolve_initial_references("NameService");NamingContext ncRef = NamingContextHelpe r.narrow(objRef);// testSystem.out.println("OK..");// resolve the Object Reference in NamingNameComponent nc = new NameComponent( "Hello", "");NameComponent path[] = {nc};Hello helloRef = HelloHelper.narrow(ncRef.re solve(path));// call the Hello server object and print results//String oldhello = stMessage();//System.out.println(oldhello);String Hello = helloRef.sayHello();System.out.println(Hello);} catch (Exception e) {System.out.println("ERROR : " + e) ;e.printStackTrace(System.out);}}}<b>5. complie these files</b>javac *.java HelloApp/*.java<b>6. run the application</b>a. first you’ve to run the Name Service prior to the others likethis c:\>tnameservb. run server c:\>java HelloServerc. run clientc:\>java HelloClient利用RamdonAccessFile来实现文件的追加RamdonAccessFile 是个很好用的类,功能十分强大,可以利用它的length()和seek()方法来轻松实现文件的追加,相信我下面这个例子是很容易看懂的,先写入十行,用length()读出长度(以byte为单位),在用seek()移动到文件末尾,继续添加,最后显示记录。
java小程序源代码
import java.awt.*;import java.awt.event.*;import javax.swing.*;import javax.swing.event.*;class CalculatorPanel extends JPanel implements ActionListener{public CalculatorPanel(){setLayout(new BorderLayout());display=new JTextField("0");display.setEditable(false);add(display,"Center");ope=new JTextField(" ");ope.setEditable(false);add(ope,"West");//创建菜单栏(暂时无实际意义)JMenuBar bar=new JMenuBar();add(bar,"North");JMenu view=new JMenu("查看(V)");JMenu edit=new JMenu("编辑(E)");JMenu help=new JMenu("帮助(H)");bar.add(view);bar.add(edit);bar.add(help);JMenuItem newItem=new JMenuItem("标准型(V)");JMenuItem newItem2=new JMenuItem("科学型(S)");JMenuItem newItem3=new JMenuItem("退出(E)");JMenuItem newItem4=new JMenuItem("关于..");view.add(newItem);view.add(newItem2);view.add(newItem3);help.add(newItem4);newItem4.addActionListener(new ActionListener(){public void actionPerformed(ActionEvent e) {JOptionPane.showMessageDialog(null,"本程序由射手同学独立完成,请任何时候保留此句!");}});newItem3.addActionListener(new ActionListener(){public void actionPerformed(ActionEvent e) {int res;res=JOptionPane.showConfirmDialog(null, "确定退出?", "退出", JOptionPane.YES_NO_OPTION);if(res==JOptionPane.YES_OPTION) System.exit(0);}});JPanel p=new JPanel();p.setLayout(new GridLayout(4,4));String buttons="789/456*123-0.=+";for (int i=0;i<buttons.length();i++)addButton(p,buttons.substring(i,i+1));add(p,"South");}private void addButton(Container c,String s){JButton b=new JButton(s);// b.setSize()c.add(b);b.addActionListener(this);}public void actionPerformed(ActionEvent evt){String s=evt.getActionCommand();if ('0'<=s.charAt(0)&&s.charAt(0)<='9'){if(start)display.setText(s);else display.setText(display.getText()+s);start=false;}else//输入的是运算符,进行四则运算{double x=Double.parseDouble(display.getText());calculate(x);op=s;ope.setText(op);start=true;//重置文本框}}public void calculate(double n){if(op.equals("+")) arg+=n;else if (op.equals("-")) arg -=n;else if (op.equals("*")) arg*=n;else if (op.equals("/")) arg/=n;else if (op.equals("=")) arg=n;display.setText(""+arg);}//数据重置private boolean start=true;//是否是第一个输入private String op="=";//运算符private double arg=0;//运算结果private JTextField display;private JTextField ope;}class CalculatorFrame extends JFrame{public CalculatorFrame(){setTitle("Calculator");setLocation(500,200);setSize(200,200);setResizable(true);//关闭窗口事件响应,有两种方法setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE); // 或者如下所示方法二// addWindowListener(new WindowAdapter()// {// public void windowClosing(WindowEvent e)// {// System.exit(0);// }//// });Container contentPane=getContentPane();contentPane.add(new CalculatorPanel());}}public class Calculator_2{ public static void main(String[] args) {JFrame frame=new CalculatorFrame(); frame.show();Calculator_2 a=new Calculator_2(); }}。
- 1、下载文档前请自行甄别文档内容的完整性,平台不提供额外的编辑、内容补充、找答案等附加服务。
- 2、"仅部分预览"的文档,不可在线预览部分如存在完整性等问题,可反馈申请退款(可完整预览的文档不适用该条件!)。
- 3、如文档侵犯您的权益,请联系客服反馈,我们会尽快为您处理(人工客服工作时间:9:00-18:30)。
1.加法器(该java源文件的名称是)import .*;import .*;public class Adder implements ActionListener{JFrame AdderFrame;JTextField TOprand1;JTextField TOprand2;JLabel LAdd,LSum;JButton BAdd,BClear;JPanel JP1,JP2;public Adder(){AdderFrame=new JFrame("AdderFrame");TOprand1=new JTextField("");TOprand2=new JTextField("");LAdd=new JLabel("+");LSum=new JLabel("= ");BAdd=new JButton("Add");BClear=new JButton("Clear");JP1=new JPanel();JP2=new JPanel();(this);(new ActionListener(){public void actionPerformed(ActionEvent event) {("");("");("=");}});(JP1);(TOprand1);(LAdd);(TOprand2);(LSum);(JP2);(BAdd);(BClear);().setLayout(new BorderLayout()); ().add(JP1,;().add(JP2,;(new WindowAdapter(){public void windowClosing(WindowEvent event){(0);}});();(true);(false);(250,100);}public void actionPerformed(ActionEvent event){double sum=(double)()).doubleValue()+()).doubleValue());("="+sum);}public static void main(String[] args){Adder adder=new Adder();}}2.小型记事本(该java源文件由两个类构成,名称为)import .*;import .*;import .*;class mynotepad extends JFrame{File file=null;Color color=;mynotepad(){initTextContent();initMenu();initAboutDialog();}void initTextContent(){getContentPane().add(new JScrollPane(content)); }JTextPane content=new JTextPane();JFileChooser openfile=new JFileChooser();JColorChooser opencolor=new JColorChooser();JDialog about=new JDialog(this);JMenuBar menu=new JMenuBar();ength;j++){menus[i].add(optionofmenu[i][j]);optionofmenu[i][j].addActionListener( action );}}(menu);}ActionListener action=new ActionListener(){ quals(name)){("");file=null;}else if("打开".equals(name)){if(file !=null)(file);int returnVal=;if(returnVal=={file=();unfold();}}else if("保存".equals(name)){if(file!=null) (file);int returnVal=;if(returnVal=={file=();saving();}}else if("退出".equals(name)){mynotepad f=new mynotepad();int s=(f,"退出?","退出",; if(s==(0);}else if("剪切".equals(name)){();}else if("复制".equals(name)) {();}else if("粘贴".equals(name)) {();}else if("颜色".equals(name)) {color=,"",color);(color);}else if("关于".equals(name)){(300,150);();}}};void saving(){try{FileWriter Writef=new FileWriter(file);());();}catch(Exception e){();}}void unfold(){try{FileReader Readf=new FileReader(file);int len=(int)();char []buffer=new char[len];(buffer,0,len);();(new String(buffer));}catch(Exception e){();}}void initAboutDialog(){(new GridLayout(3,1));().setBackground;().add(new JLabel("我的记事本程序"));dd(new JLabel("制作者:Fwx"));().add(new JLabel("2007年12月"));(true); ;import .*;class simplecalculator{static String point=new String();static String Amal=new String();static String ONE=new String();static String TWO=new String();static String THREE=new String();static String FOUR=new String();static String FIVE=new String();static String SIX=new String();static String SEVEN=new String();static String EIGHT=new String();static String NINE=new String();static String ZERO=new String();static String ResultState=new String();static Double QF;static JButton zero=new JButton("0");static JButton one=new JButton("1"); static JButton two=new JButton("2"); static JButton three=new JButton("3"); static JButton four=new JButton("4"); static JButton five=new JButton("5"); static JButton six=new JButton("6"); static JButton seven=new JButton("7"); static JButton eight=new JButton("8"); static JButton nine=new JButton("9"); static JButton add=new JButton("+"); static JButton sub=new JButton("-"); static JButton mul=new JButton("*"); static JButton div=new JButton("/"); static JButton QuFan=new JButton("+/-"); static JButton Dian=new JButton("."); static JButton equal=new JButton("=");static JButton clear=new JButton("C");static JButton BaiFen=new JButton("%"); static JButton FenZhiYi=new JButton("1/x"); static int i=0;static Double addNumber;static Double subNumber;static Double mulNumber;static Double divNumber;static Double equalNumber;static Double temp;static JTextArea result=new JTextArea(1,20); public static void main(String[] args){JFrame frame=new JFrame("计算器"); (false);("");ResultState="窗口空";JPanel ForResult=new JPanel();JPanel ForButton7_clear=new JPanel(); JPanel ForButton4_mul=new JPanel(); JPanel ForButton1_sub=new JPanel(); JPanel ForButton0_equal=new JPanel();FlowLayout FLO=new FlowLayout(); (result);(FLO);(seven);(eight);(nine);(div);(clear);(FLO); (four); (five); (six); (mul); (BaiFen);(FLO); (one); (two); (three); (sub); (FenZhiYi);(FLO); (zero);(QuFan);(Dian);(add);(equal);().setLayout(FLO);().add(ForResult);().add(ForButton7_clear); ().add(ForButton4_mul); ().add(ForButton1_sub); ().add(ForButton0_equal);;(250,250,245,245); (false);(true);( new ActionListener(){public void actionPerformed(ActionEvent e) {("");ZERO="";ONE="";TWO="";THREE="";FOUR="";FIVE="";SIX="";SEVEN="";EIGHT="";NINE="";ResultState="窗口空";point="";i=0;}});( new ActionListener(){public void actionPerformed(ActionEvent e){ZERO="已经点击";ResultState="窗口不为空";if(ONE=="已经点击"||TWO=="已经点击"||THREE=="已经点击"||FOUR=="已经点击"||FIVE=="已经点击"||SIX=="已经点击"||SEVEN=="已经点击"||EIGHT=="已经点击"||NINE=="已经点击"){("0");}if(ResultState=="窗口空"){("0");}}});( new ActionListener(){public void actionPerformed(ActionEvent e){ONE="已经点击";ResultState="窗口不为空";if(point=="已经点击"||ZERO!="已经点击"||ONE=="已经点击"||TWO=="已经点击"||THREE=="已经点击"||FIVE=="已经点击"||SIX=="已经点击"||SEVEN=="已经点击"||EIGHT=="已经点击"||NINE=="已经点击"&&()!="0"){("1");}if(ResultState=="窗口空"){("1");}}});( new ActionListener(){public void actionPerformed(ActionEvent e){TWO="已经点击";ResultState="窗口不为空";if(point=="已经点击"||ZERO!="已经点击"||ONE=="已经点击"||TWO=="已经点击"||THREE=="已经点击"||FIVE=="已经点击"||SIX=="已经点击"||SEVEN=="已经点击"||EIGHT=="已经点击"||NINE=="已经点击"&&()!="0"){("2");}if(ResultState=="窗口空"){("2");}}});( new ActionListener(){public void actionPerformed(ActionEvent e){THREE="已经点击";ResultState="窗口不为空";if(point=="已经点击"||ZERO!="已经点击"||ONE=="已经点击"||TWO=="已经点击"||THREE=="已经点击"||FIVE=="已经点击"||SIX=="已经点击"||SEVEN=="已经点击"||EIGHT=="已经点击"||NINE=="已经点击"&&()!="0") {("3");}if(ResultState=="窗口空"){("3");}}});( new ActionListener(){public void actionPerformed(ActionEvent e){FOUR="已经点击";ResultState="窗口不为空";if(point=="已经点击"||ZERO!="已经点击"||ONE=="已经点击"||TWO=="已经点击"||THREE=="已经点击"||FIVE=="已经点击"||SIX=="已经点击"||SEVEN=="已经点击"||EIGHT=="已经点击"||NINE=="已经点击"&&()!="0"){("4");}if(ResultState=="窗口空"){("4");}}});( new ActionListener(){public void actionPerformed(ActionEvent e){FIVE="已经点击";ResultState="窗口不为空";if(point=="已经点击"||ZERO!="已经点击"||ONE=="已经点击"||TWO=="已经点击"||THREE=="已经点击"||FIVE=="已经点击"||SIX=="已经点击"||SEVEN=="已经点击"||EIGHT=="已经点击"||NINE=="已经点击"&&()!="0"){("5");}if(ResultState=="窗口空"){("6");}}});( new ActionListener(){public void actionPerformed(ActionEvent e){SIX="已经点击";ResultState="窗口不为空";if(point=="已经点击"||ZERO!="已经点击"||ONE=="已经点击"||TWO=="已经点击"||THREE=="已经点击"||FIVE=="已经点击"||SIX=="已经点击"||SEVEN=="已经点击"||EIGHT=="已经点击"||NINE=="已经点击"&&()!="0"){("6");}if(ResultState=="窗口空"){("6");}}});( new ActionListener(){public void actionPerformed(ActionEvent e){SEVEN="已经点击";ResultState="窗口不为空";if(point=="已经点击"||ZERO!="已经点击"||ONE=="已经点击"||TWO=="已经点击"||THREE=="已经点击"||FIVE=="已经点击"||SIX=="已经点击"||SEVEN=="已经点击"||EIGHT=="已经点击"||NINE=="已经点击"&&()!="0"){("7");}if(ResultState=="窗口空"){("7");}}});( new ActionListener(){public void actionPerformed(ActionEvent e){EIGHT="已经点击";ResultState="窗口不为空";if(point=="已经点击"||ZERO!="已经点击"||ONE=="已经点击"||TWO=="已经点击"||THREE=="已经点击"||FIVE=="已经点击"||SIX=="已经点击"||SEVEN=="已经点击"||EIGHT=="已经点击"||NINE=="已经点击"&&()!="0"){("8");}if(ResultState=="窗口空"){("8");}}});( new ActionListener(){public void actionPerformed(ActionEvent e){NINE="已经点击";ResultState="窗口不为空";if(point=="已经点击"||ZERO!="已经点击"||ONE=="已经点击"||TWO=="已经点击"||THREE=="已经点击"||FIVE=="已经点击"||SIX=="已经点击"||SEVEN=="已经点击"||EIGHT=="已经点击"||NINE=="已经点击"&&()!="0"){("9");}if(ResultState=="窗口空"){("9");}}});( new ActionListener(){public void actionPerformed(ActionEvent e){point="已经点击";i=i+1;if(ResultState=="窗口不为空"&&i==1){(".");}}});( new ActionListener(){public void actionPerformed(ActionEvent e) {Amal="已经选择加号";addNumber=()).doubleValue();("");i=0;}});( new ActionListener(){public void actionPerformed(ActionEvent e) {Amal="已经选择减号";subNumber=()).doubleValue();("");i=0;}});( new ActionListener(){public void actionPerformed(ActionEvent e) {Amal="已经选择乘号";mulNumber=()).doubleValue();("");i=0;}});( new ActionListener(){public void actionPerformed(ActionEvent e){Amal="已经选择除号";divNumber=()).doubleValue();("");i=0;}});( new ActionListener(){public void actionPerformed(ActionEvent e) {QF=new Double()).doubleValue());QF=QF*(-1);());}});( new ActionListener(){public void actionPerformed(ActionEvent e) {equalNumber=()).doubleValue();if(Amal=="已经选择加号"){temp=addNumber+equalNumber;());}if(Amal=="已经选择减号"){temp=subNumber-equalNumber;());}if(Amal=="已经选择乘号"){temp=mulNumber*equalNumber;());}if(Amal=="已经选择除号"){temp=divNumber/equalNumber;());}}});( new ActionListener(){public void actionPerformed(ActionEvent e) {if(ResultState=="窗口不为空"){temp=()).doubleValue()/100;());}}});( new ActionListener(){public void actionPerformed(ActionEvent e) {temp=1/()).doubleValue());());}});}}3.图形化写字板(该java源文件的名称是);import .*;import .*;import class JNotePadUI extends JPanel{etSystemClipboard();String text = "";etPath();if (file == null){return;}etPath();if (savefile == null){return;}else{String docToSave = ();if (docToSave != null){FileOutputStream fstrm = null;BufferedOutputStream ostrm = null;try{fstrm = new FileOutputStream(savefile);ostrm = new BufferedOutputStream(fstrm);byte[] bytes = null;try{bytes = ();}catch (Exception e1){();}(bytes);}catch (IOException io){"IOException: "+ ());}finally{try{();();();}catch (IOException ioe){"IOException: "+ ());}}}}}else{return;}}}etVisible(true);(0);}dd(applet, ;(new appCloseL());(800, 500);(500,170);(true);();(false);}}4.数字化的连连看(该java源文件的名称是)import .*;import .*;importpublic class lianliankan implements ActionListener{JFrame mainFrame; ddActionListener(this);(diamondsButton[cols][rows]);}}exitButton=new JButton("退出"); (this);resetButton=new JButton("重列"); (this);newlyButton=new JButton("再来一局"); (this);(exitButton);(resetButton);(newlyButton);())));(fractionLable);(280,100,500,450);(true);}public void randomBuild(){int randoms,cols,rows;for(int twins=1;twins<=15;twins++){randoms=(int)()*25+1);for(int alike=1;alike<=2;alike++){cols=(int)()*6+1);rows=(int)()*5+1);while(grid[cols][rows]!=0){cols=(int)()*6+1);rows=(int)()*5+1);}[cols][rows]=randoms;}}}public void fraction(){())+100));}public void reload(){int save[] = new int[30];int n=0,cols,rows;int grid[][]= new int[8][7];for(int i=0;i<=6;i++){for(int j=0;j<=5;j++){if[i][j]!=0){save[n]=[i][j];n++;}}}n=n-1;=grid;while(n>=0){cols=(int)()*6+1);rows=(int)()*5+1);while(grid[cols][rows]!=0){cols=(int)()*6+1);rows=(int)()*5+1);}[cols][rows]=save[n];n--;}(false);pressInformation=false; etVisible(false);}}}public void estimateEven(int placeX,int placeY,JButton bz) {if(pressInformation==false){x=placeX;y=placeY;secondMsg=grid[x][y];secondButton=bz;pressInformation=true;}else{x0=x;y0=y;fristMsg=secondMsg;firstButton=secondButton;x=placeX;y=placeY;secondMsg=grid[x][y];secondButton=bz;if(fristMsg==secondMsg && secondButton!=firstButton) {。