摘要: /*第1步:创建临时表空间 */create temporary tablespace user_temp tempfile 'D:\oracle\oradata\Oracle9i\user_temp.dbf' size 50m autoextend on next 50m maxsize ... 阅读全文
posted @ 2015-10-25 17:17 雨鹭 阅读(298) 评论(0) 推荐(0) 编辑
摘要: Oracle SQL语句分类2008-06-17 11:15:25分类:Linux* 2008/06/17 星期二*蒙昭良*环境:WindowsXP + Oracle10gR2*Oracle SQL语句分类:分为6类*/一、DML[Data manipulation language,数据操作语言]... 阅读全文
posted @ 2015-10-25 17:15 雨鹭 阅读(196) 评论(0) 推荐(0) 编辑
摘要: 1 public class ThreadTest extends Thread { 2 3 public void run() 4 { 5 for (int i = 0 ; i <20; i ++) 6 { 7 try {... 阅读全文
posted @ 2015-10-20 20:16 雨鹭 阅读(161) 评论(0) 推荐(0) 编辑
摘要: 1 package shurushuchu; 2 3 import java.io.*; 4 5 public class main { 6 7 public static void main(String[] args) 8 { 9 File f... 阅读全文
posted @ 2015-10-20 20:14 雨鹭 阅读(134) 评论(0) 推荐(0) 编辑
摘要: 1 package yichangchuli; 2 3 import java.io.IOException; 4 5 public class ttxt { 6 7 public static void main(String[] args) { 8 //捕获异常 9 ... 阅读全文
posted @ 2015-10-20 20:13 雨鹭 阅读(151) 评论(0) 推荐(0) 编辑
摘要: /*** Hash算法大全* 推荐使用FNV1算法* @algorithm None* @author Goodzzp 2006-11-20* @lastEdit Goodzzp 2006-11-20* @editDetail Create*/public class HashAlgorithms{... 阅读全文
posted @ 2015-10-16 21:46 雨鹭 阅读(202) 评论(0) 推荐(0) 编辑
摘要: 使用Java实现链表,首先定义链表的数据结构,也就是定义一个类,LinkedListNode。这个定义了链表的节点,链表节点分两部分,数据info和链接link。public class LinkedListNode { public int info; public LinkedListNode ... 阅读全文
posted @ 2015-10-16 21:45 雨鹭 阅读(148) 评论(0) 推荐(0) 编辑
摘要: 1 package com.hanqi; 2 3 //父类 4 5 //电话 6 public class telephone { 7 8 public telephone() 9 { 10 11 } 12 13 ... 阅读全文
posted @ 2015-10-15 21:48 雨鹭 阅读(132) 评论(0) 推荐(0) 编辑
摘要: package zuoye;//创建父类public class Txd { public Txd() { }//属性 //颜色 public String Yanse; //品牌 public String Pinpai; //电容... 阅读全文
posted @ 2015-10-15 21:42 雨鹭 阅读(154) 评论(0) 推荐(0) 编辑
摘要: 1 package shuzi; 2 3 import java.text. DecimalFormat; 4 import java.math.BigInteger; 5 import java.math.BigDecimal; 6 import java.util.Ran... 阅读全文
posted @ 2015-10-12 18:22 雨鹭 阅读(225) 评论(0) 推荐(0) 编辑