- 浏览: 436013 次
- 性别:
- 来自: 北京
最新评论
-
adaylee:
貌似好久没上了
用iptables 实现本地端口转发 -
adaylee:
鲫鱼?哈哈,居然Google到你了
用iptables 实现本地端口转发 -
yflxc:
com.sun.jimi.core.raster.JimiRa ...
java对图片进行等比例缩放 -
bo_hai:
等比例压缩的算法是不是可以改进呢?
java对图片进行等比例缩放 -
Mr.TianShu:
http://www.cppblog.com/deercode ...
java 遍历目录下的文件
文章列表
第一原则:如果自己不能喝,丫就别开始第一口,自己端着饭碗夹了菜一边吃着去。 第二原则:如果确信自己要喝,就别装墨迹,接下来就是规矩了。 【规矩】 规矩一,酒桌上虽然“感情深,一口闷;感情浅,舔一舔”但是喝 ...
- 2008-10-21 23:00
- 浏览 994
- 评论(0)
package test;
public class StaticTest {
public static void main(String[] args) {
// fill the staff array with three Employee objects
Employee[] staff = new Employee[3];
staff[0] = new Employee("Tom",40000);
staff[1] = new Employee("Dick",50000);
staff[2] = new Empl ...
- 2008-10-17 12:31
- 浏览 1801
- 评论(0)
package test;
import java.util.*;
public class CalendarTest {
public static void main(String[] args)
{
// construct d as current date
//此日历对象表示了默认地区的默认时区的当前时间。
GregorianCalendar d = new GregorianCalendar();
int today = d.get(Calendar.DAY_OF_MONTH);
int month = d.get(Calendar.MONTH ...
- 2008-10-15 22:29
- 浏览 1304
- 评论(0)
package test;
import java.text.*;
public class CompoundInterest {
public static void main(String[] args) {
final int STARTRATES = 10;
final int NRATES = 6;
final int NYEARS = 10;
//set interest rates to 10 ... 15%
double[] interestRate = new double[NRATES];
for (int i = 0; i < i ...
- 2008-10-15 21:14
- 浏览 968
- 评论(0)
package test;
import java.util.*;
import javax.swing.*;
public class LotterDrawing {
/**
* @param args
*/
public static void main(String[] args) {
// TODO Auto-generated method stub
String input = JOptionPane.showInputDialog("How many numbers do you need to draw?");
int k = I ...
- 2008-10-15 19:53
- 浏览 1685
- 评论(0)
下边是一个生成随机密码的代码, 在main函数中,用循环生成10个不一样的随机密码,可不知道为什么,生成的随机密码都是一样的,但是加上个循环,使时间间隔大一点就能得到不同的。 其实用Math.random() 就能达到理想效果。下边是代码:
package test;
import java.util.Random;
public class RandomPassword {
public static void main(String[] args) {
int i = 0;
while (i < 10)
{
Sy ...