2017年11月1日
摘要:
1 //accept.jsp 2 package servlets; 3 4 import java.io.*; 5 import javax.servlet.*; 6 import javax.servlet.http.*; 7 public class accept extends HttpServlet 8 { 9 public String codeToS...
阅读全文
posted @ 2017-11-01 21:17
小星_log
阅读(840)
推荐(0)
2017年10月31日
摘要:
1 //Add.java 2 package beans; 3 4 public class Add 5 { 6 private int data1; 7 private int data2; 8 private int sum; 9 public Add(){} 10 public int getData1(){return dat...
阅读全文
posted @ 2017-10-31 22:43
小星_log
阅读(181)
推荐(0)
2017年10月30日
摘要:
1 //Count.java 2 package beans; 3 4 public class Count { 5 private int count; 6 public Count(){count=0;} 7 public int getCount(){ 8 count++; 9 return count; 10 ...
阅读全文
posted @ 2017-10-30 20:56
小星_log
阅读(391)
推荐(0)
2017年10月29日
摘要:
//Circle.java package beans; public class Circle { private double radius; private double zhouchang; private double area; public double getRadius() { return radius; } ...
阅读全文
posted @ 2017-10-29 21:34
小星_log
阅读(2253)
推荐(1)
2017年10月28日
摘要:
1 /* 2 * To change this license header, choose License Headers in Project Properties. 3 * To change this template file, choose Tools | Templates 4 * and open the template in the editor. ...
阅读全文
posted @ 2017-10-28 23:36
小星_log
阅读(462)
推荐(0)
2017年10月27日
摘要:
//HelloApplet.java 2 package hello; 3 import java.awt.FlowLayout; 4 import java.awt.event.ActionEvent; 5 import java.awt.event.ActionListener; 6 import javax.swing.*; 7 public class HelloApple...
阅读全文
posted @ 2017-10-27 22:48
小星_log
阅读(554)
推荐(0)
2017年10月26日
摘要:
1 /* 2 * To change this license header, choose License Headers in Project Properties. 3 * To change this template file, choose Tools | Templates 4 * and open the template in the editor. ...
阅读全文
posted @ 2017-10-26 20:50
小星_log
阅读(853)
推荐(0)
2017年10月25日
摘要:
1 //WordSort.java 2 package javaapplication3; 3 import java.awt.*; 4 import java.awt.event.*; 5 import javax.swing.*; 6 import javax.swing.event.*; 7 import java.util.*; 8 import javax.swing....
阅读全文
posted @ 2017-10-25 22:28
小星_log
阅读(713)
推荐(0)
2017年10月24日
摘要:
1 //ClockDemo.java 2 3 /* 4 * To change this license header, choose License Headers in Project Properties. 5 * To change this template file, choose To
阅读全文
posted @ 2017-10-24 22:00
小星_log
阅读(1559)
推荐(0)
2017年10月23日
摘要:
1 // AnimatorIcon.java 2 3 /* 4 * To change this license header, choose License Headers in Project Properties. 5 * To change this template file, choos
阅读全文
posted @ 2017-10-23 23:13
小星_log
阅读(276)
推荐(0)