BloveSaga

在希腊帕尔纳斯山南坡上,有一个驰名世界的戴尔波伊神托所,在它的入口处的巨石上赫然锈刻着这样几个大字: 认识你自己!

  BlogJava :: 首页 :: 新随笔 :: 联系 :: 聚合  :: 管理 ::
  34 随笔 :: 12 文章 :: 122 评论 :: 0 Trackbacks

#

  编码:将一个Unicode码转换为本地字符表示的过程为编码。
  解码:将一个字节转换为一个字符(用Unicode表示),这个过程叫解码。
        [简单的说去获取一个Unicode码就是解码]
 code:

import java.util.*;
import java.nio.charset.*;
class CharsetTest
{
 public static void main(String[] args)throws Exception
 {
  /*
  Map m=Charset.availableCharsets();
  Set names=m.keySet();
  Iterator it =names.iterator();
  while(it.hasNext())
  {
   System.out.println(it.next());
  }
  */
  Properties pps=System.getProperties();
  //pps.list(System.out);
  pps.put("file.encoding","ISO-8859-1");
  int data;
  byte[] buf=new byte[100];
  int i=0;
  while((data=System.in.read())!='q')
  {
   buf[i]=(byte)data;
   i++;
  }
  String str=new String(buf,0,i);
  //String strGBK=new String(str.getBytes("ISO-8859-1"),"GBK");
  //System.out.println(strGBK);
  System.out.println(str);
 }
}

 

     RandomAccessFile

  RandomAccessFile类同时实现了DataInput和DataOutput接口,提供了对文件随机存取的功能,
  利用这个类可以在文件的任何位置读取或写入数据。
  RandomAccessFile类提供了一个文件指针,用来标志要进行读写操作的下一位数据的位置。

 
 code:
import java.io.*;
class RandomFileTest
{
 public static void main(String[] args)throws Exception
 {
  Student s1 = new Student(1,"zhangsan",98.5);
  Student s2 = new Student(2,"lisi",90.5);
  Student s3 = new Student(3,"wangwu",78.5);
  
  RandomAccessFile rsf=new RandomAccessFile("student.txt","rw");  //存取模式rw
  s1.WriteStudent(rsf);
  s2.WriteStudent(rsf);
  s3.WriteStudent(rsf);
  
  Student s =new Student();
  rsf.seek(0); //把文件指针移到文件首
  for(long i=0;i<rsf.length();i=rsf.getFilePointer())
  {
   s.ReadStudent(rsf);
   System.out.println(s.num+":"+s.name+":"+s.score);
  }
  rsf.close();
 }
}

class Student
{
 int num;
 String name;
 double score;
 Student()
 {
  
 }
 Student(int num,String name,double score)
 {
  this.num=num;
  this.name=name;
  this.score=score;
 }
 public void WriteStudent(RandomAccessFile raf)throws Exception
 {
  raf.writeInt(num);
  raf.writeUTF(name);
  raf.writeDouble(score);
 }
 public void ReadStudent(RandomAccessFile raf)throws Exception
 {
  raf.readInt();
  raf.readUTF();
  raf.readDouble();  
 }
}


           对象序列化

 .将对象转换为字节流保存起来,并在日后还原这个对象,这种机制叫做对象序列化。
 .将一个对象保存到永久存储设备上称为持续性。
 .一个对象要想能够实现序列化,必须实现Serializable接口或Externalizable接口。
 .当一个对象被序列化时,只保存对象的非静态成员变量,不能保存任何的成员变量和静态的
  成员变量。
 .如果一个对象的成员变量是一个对象,那么这个对象的数据成员也会被保存。
 .如果一个可序列化的对象包含对某个不可序列化的对象的引用,那么整个序列化操作将会失败,
  并且会抛出一个NotSerializableException。我们可以将这个引用标记为transient,那么对象
  仍然可以序列化。

 code:
import java.io.*;
class ObjectSerialTest
{
 public static void main(String[] args)throws Exception
 {
  Employee e1 = new Employee("zhangsan",20,2800.50);
  Employee e2 = new Employee("lisi",22,25000.50);
  Employee e3 = new Employee("wangwu",23,12800.50);
  Employee e4 = new Employee("blovesaga",22,3800.50);
  
  FileOutputStream fos=new FileOutputStream("employee.txt");
  ObjectOutputStream oos=new ObjectOutputStream(fos);
  oos.writeObject(e1);
  oos.writeObject(e2);
  oos.writeObject(e3);
  oos.writeObject(e4);
  oos.close();
  
  FileInputStream fis = new FileInputStream("employee.txt");
  ObjectInputStream ois =new ObjectInputStream(fis);
  Employee e;
  for(int i=0;i<4;i++)
  {
   e=(Employee)ois.readObject();
   System.out.println(e.name+":"+e.age+":"+e.salary);
  }
  ois.close();
 }
}

class Employee implements Serializable
{
 String name;
 int age;
 double salary;
 transient Thread t1 =new Thread();
 Employee(String name,int age,double salary)
 {
  this.name=name;
  this.age=age;
  this.salary=salary;
 }
 //可以写private void readObject()方法来控制我们自己想要实现的
 private void writeObject(java.io.ObjectOutputStream oos)throws Exception
 {
  //例如我们自己写想要显示的顺序和那些需要显示
  oos.writeInt(age);
  oos.writeUTF(name);
  System.out.println("Write Object");
 }
 private void readObject(java.io.ObjectInputStream ois)throws Exception
 {
  //按照写入的顺序来读取
  age=ois.readInt();
  name=ois.readUTF();
  System.out.println("Read Object");
 }
}

posted @ 2006-06-11 21:27 蓝色Saga 阅读(136) | 评论 (0)编辑 收藏

               File类

 一个File类的对象,表示了磁盘上的文件或目录。
 File类提供了与平台无关的方法来对磁盘上的文件或目录进行操作。

import java.io.*;
class FileTest
{
 public static void main(String[] args) throws Exception
 {
  //File f = new File("1.txt");
  //f.createNewFile();   创建文件
  //f.mkdir(); 创建文件夹
  //File f = new File("F:\\Java Develop\\1.txt");//使用绝对路径
  //f.createNewFile();
  /*
  *WINDOWS平台下有盘符,LINUX下是没有的
  *考虑到JAVA语言的平台性,所有用分隔符seperator/seperatorChar
  */
  /*
  File fDir = new File(File.separator);//创建了当前的根目录
  String strFile = "Java Develop"+File.separator+"1.txt";
  File f = new File(fDir,strFile);
  f.createNewFile();
  //f.delete();
  f.deleteOnExit();
  Thread.sleep(3000);
  */
  /*
  for(int i=0;i<5;i++)
  {
   File.createTempFile("linshi",".tmp");
   f.deleteOnExit();
  }
  Thread.sleep(3000);
  */
  
  File fDir = new File(File.separator);
  String strFile ="Java Develop"+File.separator;
  File f = new File(fDir,strFile);
  //文件过滤器
  String[] names = f.list(new FilenameFilter()
  {
   public boolean accept(File dir,String name)
   {
    return name.indexOf(".java")!=-1;
   }
  });
  for(int i=0;i<names.length;i++)
  {
   System.out.println(names[i]);
  }
 }
}

            流式I/0

 流(Stream)是字节的源或目的。
 两种基本的流是: 输入流(Input Stream)和输出流(Output Stream)。从从中读出一系列字节的
 对象称为输入流。而能向其中写入一系列字节的对象称为输出流。


           流的分类
 
 节点流: 从特定的地方读写的流类,例如:磁盘或一块内存区域。
 过滤流: 使用节点作为输入或输出。过滤流使用的是一个已经存在的输入流或输出流连接创建的。
 (如下图)


         InputStream(一个抽象的基类)
 .三个基本的读写方法
  abstract int read(): 读取一个字节数据,并返回到数据,如果返回-1,表示读到了输入流的
                       末尾。
  int read(byte[] b):  将数据读入一个字节数组,同时返回实际读取的字节数。如果返回-1,
                       表示读到了输入流的末尾。
  int read(byte[] b,int off,int len): 将数据读入一个字节数组,同时返回是实际读取的字
                       节数。如果返回-1,表示读到了输入流的末尾。off指定在数组b中存放
                       数据的起始偏移位置;len指定读取的最大字节数。
 其他的方法
  long-skip(long n): 在输入流中跳过n个字节,并返回实际跳过的字节数。
  int available():   返回在不发生阻塞的情况下,可读取的字节数。
  void close():      关闭输入流,释放和这个流相关的系统资源。
  void mark(int reqdlimit): 在输入流的当前位置放置一个标记,如果读取的字节数多余
                     readlimit设置的值,则流忽略这个标记。
  void reset():      返回到上一个标记。
  boolean markSupported(): 测试当前是否支持mark和reset方法。如果支持返回true,反之false。

         java.io包中的InputStream的类层次 (下图)

        OutputStream

 三个基本的写方法
 abstract void write(int b): 往输出流中写入一个字节
 void write(byte[] b):       往输出流中写入数组b中的所有字节
 void writte(byte[] b,int off,int len): 往输出流中写入数组b中从偏移量off开始的len个
                             字节的数据
 其它方法
 void flush(): 刷新输出流,强制缓冲区中的输出字节被写出
 void close(): 关闭输出流,释放和这个流相关的系统资源

        java.io包中OutputStream的类层次(如下图)



        基本的流类

 FileInputStream和FileOutputStream
 节点流,用于从文件中读取或往文件中写入字节流。如果在构造FileOutputStream时,文件已经
 存在,则覆盖这个文件。
 
 BufferedInputStream和BufferedOutputStream
 过滤流,需要使用已经存在的节点流来构造,提供带缓冲的读写,提高了读写的效率。

 DataInputStream和DataOutputStream
 过滤流,需要使用已经存在的节点流来构造,提供了读写Java中的基本数据类型的功能。

 PipedInputStream和PipedOutputStream
 管道流,用于线程间的通信。一个线程的PipedInputStream对象从另一个线程的PipedOutputStream
 对象读取输入。要使管道流有用,必须同时构造管道输入流和管道输出流。

code:
import java.io.*;
class StreamTest
{
 public static void main(String[] args)throws Exception
 {
  /*
  int data;
  while((data=System.in.read())!=-1)  //从标准设备读取数据
  {
   System.out.write(data);//从标准设备输出数据
  }
  */
  //输出流写数据,只需要关闭尾端的流就可以了,因为fos连接到了bos
  FileOutputStream fos = new FileOutputStream("1.txt");
  //fos.write("http://www.google.cn".getBytes());
  //fos.close();
  BufferedOutputStream bos = new BufferedOutputStream(fos);
  //bos.write("http//www.baidu.com".getBytes());
  //bos.flush();
  //bos.close();
  DataOutputStream dos=new DataOutputStream(bos); //连接到了bos和fis
  byte b=3;
  int i=78;
  char ch='a';
  float f=4.5f;
  dos.writeByte(b);
  dos.writeInt(i);
  dos.writeChar(ch);
  dos.writeFloat(f);
  dos.close(); //必须调用flush()或者close()不然不会写入硬盘
  
  //输入流读数据
  FileInputStream fis=new FileInputStream("1.txt");
  BufferedInputStream bis = new BufferedInputStream(fis);
  //byte[] buf=new byte[100];
  //int len=fis.read(buf);
  //int len=bis.read(buf);
  //System.out.println(new String(buf,0,len));
  //fis.close();
  //bis.close();
  //注意读取的顺序要和写的顺序一样
  DataInputStream dis = new DataInputStream(bis);
  System.out.println(dis.readByte());
  System.out.println(dis.readInt());
  System.out.println(dis.readChar());
  System.out.println(dis.readFloat());
  dis.close();  
  
 }
}


管道输入/输出流 code:
import java.io.*;
class PipedStreamTest
{
 public static void main(String[] args)
 {
  PipedOutputStream pos=new PipedOutputStream();
  PipedInputStream pis=new PipedInputStream();
  //连接
  try
  {
   pos.connect(pis);
   new Producer(pos).start();
   new Consumer(pis).start();
  }
  catch(Exception e)
  {
   e.printStackTrace();
  }
 }
}

class Producer extends Thread
{
 private PipedOutputStream pos;
 public Producer(PipedOutputStream pos)
 {
  this.pos=pos;
 }
 public void run()
 {
  try
  {
   pos.write("hello,welcome!".getBytes());
   pos.close();
  }
  catch(Exception e)
  {
   e.printStackTrace();
  }
 }
}

class Consumer extends Thread
{
 private PipedInputStream pis;
 Consumer(PipedInputStream pis)
 {
  this.pis=pis;
 }
 public void run()
 {
  try
  {
   byte[] buf=new byte[100];
   int len=pis.read(buf);
   System.out.println(new String(buf,0,len));
   pis.close();
  }
  catch(Exception e)
  {
   e.printStackTrace();
  }
 }
}

=================================================================================
              Java I/O库的设计原则

 Java的I/O库提供了一个称做链接的机制,可以将一个流与另一个流首尾相接,形成一个流管道的链接。
 这种机制实际上是一种被称做为Decorator(装饰)的设计模式的应用。
 
 通过流的链接,可以动态的增加流的功能,而这些功能的增加是通过组合一些流的基本功能而动
 态获取的。

 我们要获取一个I/O对象,往往需要产生多个I/O对象,这也是Java I/O库不大容易掌握的原因,
 但在I/O库中的Decorator模式的运用,给我们提供了实现上的灵活性。

 I/O流的链接图(如下)



               Reader和Writer

 Java程序语言使用Unicode来表示字符串和字符。
 Reader和Writer这两个抽象类主要用来读写字符流。

 java.io包中Reader的类层次(如下图)

 java.io包中Writer的类层次(如下图)


 code:
import java.io.*;
class StreamTest
{
 public static void main(String[] args)throws Exception
 {
  /*
  FileOutputStream fos = new FileOutputStream("1.txt");
  OutputStreamWriter osw = new OutputStreamWriter(fos); 
  BufferedWriter bw = new BufferedWriter(osw);
  
  bw.write("http://www.yahoo.com.cn");
  bw.close(); 
  
  FileInputStream fis = new FileInputStream("1.txt");
  InputStreamReader isr = new InputStreamReader(fis);
  BufferedReader br = new BufferedReader(isr);
  System.out.println(br.readLine());
  br.close();
  */
  //InputStreamReader/OutputStreamWriter是一个中间过度类,连接字符和字符串
  InputStreamReader isr = new InputStreamReader(System.in);
  BufferedReader br = new BufferedReader(isr);
  String strLine;
  while((strLine=br.readLine())!=null)
  {
   System.out.println(strLine);
  }
  br.close();
 }
}

            字符集的编码

 ASCII(American Standard Code for Information Interchange,美国信息互换标准代码),是基
 于常用的英文字符的一套电脑编码系统。我们知道英文中经常使用的字符,数字符号被计算机
 处理时都是以二进制编码的形式出现(bit)二进制数对应。其最高位是0,相应的十进制数是0-127
 如,数字1,有一些制表符和其他符号组成。ASCII是现金最通用的单字节编码系统。

 GB2312: GB2312码是中华人民共和国国家汉字信息交换用编码,全称《信息交换用汉字编码字
 符集-基本集》。主要用于给每一个中文字符指定相应的数字,也就是进行编码。一个中文字符
 用两个字节的数字来表示,为了和ASCII码有所区别,将中文字符每一个字节的最高位置都用1
 来表示。

 GBK:为了对更多的字符进行编码,国家又发布了新的编码系统GBK(GBK的K是“扩展”的汉语
 拼音的第一个字母)。在新的编码系统里,除了完全兼容GB2312外,还对繁体中文,一些不常用
 的汉字和许多符号进行了编码。

 ISO-8859-1:是西方国家所使用的字符编码集,是一种单字节的字符集,而英文实际上只用了其
 中数字小于128的部分。

 Unicode: 这是一种通用的字符集,对所有语言的文字进行统一编码,对每一个字符都采用2个字节
 来表示,对于英文字符采取前面加“0”字节的策略实现等长兼容。如"a"的ASCII码为0x61,
 UNICODE就为0x00,0x61。

 UTF-8: Elight-bit UCS Transformation Format,(UCS,Universal Character Set,通用字符集,
 UCS是所有其他字符集标准的一个超集)。一个7位的ASCII码值,对应的UTF码是一个字节,如果
 字符是0x0000,或在0x0080与0x007f之间,对应的UTF码是两个字节,如果字符在0x0800与0xffff
 之间,对应的UTF码是三个字节。

posted @ 2006-06-11 14:18 蓝色Saga 阅读(696) | 评论 (1)编辑 收藏

     Collection                   Map(和Collection接口没任何关系)
       / \                         |
      /   \                        |     
    Set   List                  SortedMap
    /
   /
 SortedSet
(接口图)



所谓框架就是一个类库的集合。集合框架就是一个用来表示和操作集合的统一框架,包含了实现
集合的接口和类。
 
 集合框架中的接口

 .Collection: 集合层次中的根接口,JDK没有提供这个接口直接的实现类。
 .Set: 不能包含重复的元素。SortedSet是一个按照升序排列元素的Set。
 .List: 是一个有序的集合,可以包含重复的元素。提供了按照索引访问的方式。
 .Map: 包含了key-value对。Map不能包含重复的key。SortedMap是一个按照升序排列key的Map。
 
 集合框架中的实现类
 
 实线表示继承类,虚线表示实现类。
 (图如下)


 .ArrayList: 我们可以将其看做是能够自动增长容量的数组。
 .利用ArrayList的toArray()返回一个数组。
 .Arrays.asList()返回一个列表。
 .迭代器(Iterator)给我们提供了一种通用的方式来访问集合中的元素。

 注意: 从集合类中获取一个数组 toArray(),从数组获取列表利用Arrays.asList()
 例子:
import java.util.*;
class ArrayListTest
{
 public static void printElement(Collection c)
 {
  Iterator it = c.iterator();
  while(it.hasNext())
  {
   System.out.println(it.next());
  }
 }
 public static void main(String[] args)
 {
  ArrayList a = new ArrayList();
  /*
  a.add("abc");
  a.add("def");
  a.add("hjk");
  */
  
  a.add(new Point(1,1));
  a.add(new Point(2,2));
  a.add(new Point(3,3));
  /*
  Object[] o;
  o=a.toArray();  //将集合类转换为数组
  for(int i=0;i<o.length;i++)
  {
   System.out.println(o[i]);
  }
  
  List b = new ArrayList();
  b=Arrays.asList(o);
  System.out.println(b);
  
  for(int i=0;i<a.size();i++)
  {
   System.out.println(a.get(i));
  }
  
  System.out.println(a);
  System.out.println(a);
  */
  
  /*
  Iterator it = a.iterator();
   如果要删除元素,必须先调用next方法
  it.next();
  it.remove();
  while(it.hasNext())
  {
   System.out.println(it.next());
  }
  */
  //迭代器的作用: 提供一组通用的访问方式
  printElement(a);
 }
}

class Point
{
 int x, y;
 Point(int x, int y)
 {
  this.x=x;
  this.y=y;
 }
 public String toString()
 {
  return "x="+x+","+"y="+y;
 }
}

 Collections类

 .排序: Collections.sort(); [区别与Arrays.sort()]
  (1) 自然排序(natural ordering);
  (2) 实现比较器(Comparator)接口。
 .取最大和最小的元素: Collections.max(),Collections.min();
 .在已排序的List中搜索指定的元素: Collections.binarySearch()。

 代码示例:
import java.util.*;
class ArrayListTest
{
 public static void printElement(Collection c)
 {
  Iterator it = c.iterator();
  while(it.hasNext())
  {
   System.out.println(it.next());
  }
 }
 public static void main(String[] args)
 {
  /*
  ArrayList a = new ArrayList();
  
  a.add("abc");
  a.add("def");
  a.add("hjk");
  
  
  a.add(new Point(1,1));
  a.add(new Point(2,2));
  a.add(new Point(3,3));
  
  Object[] o;
  o=a.toArray();  //将集合类转换为数组
  for(int i=0;i<o.length;i++)
  {
   System.out.println(o[i]);
  }
  
  List b = new ArrayList();
  b=Arrays.asList(o);
  System.out.println(b);
  
  for(int i=0;i<a.size();i++)
  {
   System.out.println(a.get(i));
  }
  
  System.out.println(a);
  System.out.println(a);
  */
  
  /*
  Iterator it = a.iterator();
   如果要删除元素,必须先调用next方法
  it.next();
  it.remove();
  while(it.hasNext())
  {
   System.out.println(it.next());
  }
  */
  //迭代器的作用: 提供一组通用的访问方式
  //printElement(a);
  
  Student s1 = new Student(1,"zhangsan");
  Student s2 = new Student(2,"lisi");
  Student s3 = new Student(3,"wangwu");
  Student s4 = new Student(3,"blovesaga");
  
  ArrayList a = new ArrayList();
  a.add(s1);
  a.add(s2);
  a.add(s3);
  a.add(s4);
  
  //Collections.sort(a);
  Collections.sort(a,new Student.StudentComparator());
  printElement(a);
 }
}

class Point
{
 int x, y;
 Point(int x, int y)
 {
  this.x=x;
  this.y=y;
 }
 public String toString()
 {
  return "x="+x+","+"y="+y;
 }
}

class Student implements Comparable
{
 int num;
 String name;
 //实现比较器,它总是和我们的一个类相关,用内部类
 static class StudentComparator implements Comparator  //为了调用方便声明为静态的
 {
  public int compare(Object o1,Object o2)
  {
   Student s1 = (Student)o1;
   Student s2 = (Student)o2;
   int result=s1.num > s2.num ? 1: (s1.num==s2.num ? 0 : -1);
   if(result==0)
   {
    return s1.name.compareTo(s2.name);
   }
   return result;
  }
 }
 Student(int num,String name)
 {
  this.num=num;
  this.name=name;
 }
 public int compareTo(Object o)
 {
  Student s=(Student)o;
  return num > s.num ? 1 :( (num==s.num) ? 0 : -1);
 }
 
 public String toString()
 {
  return +num+":"+name;
 }
}

 

 

posted @ 2006-06-09 11:28 蓝色Saga 阅读(192) | 评论 (0)编辑 收藏

上萬張高畫質各式精選桌布http下載

所有圖片均上傳至 MEGAUPLOAD 空間!

若您要查看每集有哪些圖片,請自行瀏覽…在此就不貼出了

各集預覽http://www.lin.biz/viewforum.php?f=5

第A001集http://www.megaupload.com/?d=LMRY00AW
第A002集http://www.megaupload.com/?d=MIMTZMHN
第A003集http://www.megaupload.com/?d=JZDNKV70
第A004集http://www.megaupload.com/?d=KB7WS1TN
第A005集http://www.megaupload.com/?d=A8COTU6R
第A006集http://www.megaupload.com/?d=1WJUON4A
第A007集http://www.megaupload.com/?d=DP8C5I4Y
第A008集http://www.megaupload.com/?d=FC71IIUE
第A009集http://www.megaupload.com/?d=7RNVJABQ
第A010集http://www.megaupload.com/?d=BKMAZFQ2
第A011集http://www.megaupload.com/?d=0CUN79QQ
第A012集http://www.megaupload.com/?d=61RYJ8Q2
第A013集http://www.megaupload.com/?d=LG3L8NVL
第A014集http://www.megaupload.com/?d=RCFCV1LH
第A015集http://www.megaupload.com/?d=QFF81PUF

3月21更新

第A016集http://www.megaupload.com/?d=0FEVLSFL
第A017集http://www.megaupload.com/?d=UHLZ7NT5
第A018集http://www.megaupload.com/?d=8L3B4RNG
第A019集http://www.megaupload.com/?d=712YBM8C
第A020集http://www.megaupload.com/?d=82GJA4QI
第A021集http://www.megaupload.com/?d=7J827HKR
第A022集http://www.megaupload.com/?d=9OD2XC7H
第A023集http://www.megaupload.com/?d=QXO4ZMG7
第A024集http://www.megaupload.com/?d=IBT187D7
第A025集http://www.megaupload.com/?d=K52RYT2C
第A026集http://www.megaupload.com/?d=645LT7V4
第A027集http://www.megaupload.com/?d=SXZBFLCN
第A028集http://www.megaupload.com/?d=XU91RTCC
第A029集http://www.megaupload.com/?d=R5ZTF0IX
第A030集http://www.megaupload.com/?d=EAEC9DRK
第A031集http://www.megaupload.com/?d=TUVSJCYV
第A032集http://www.megaupload.com/?d=BOKLM691
第A033集http://www.megaupload.com/?d=5EIDGC25
第A034集http://www.megaupload.com/?d=LUEP78CJ
第A035集http://www.megaupload.com/?d=BQM78MHQ
第A036集http://www.megaupload.com/?d=2D5QVWNN
第A037集http://www.megaupload.com/?d=YHZGWGJR
第A038集http://www.megaupload.com/?d=CBGG07DP
第A039集http://www.megaupload.com/?d=P67HJMK4
第A040集http://www.megaupload.com/?d=Y2K4PDJN
第A041集http://www.megaupload.com/?d=T0TBVI47
第A042集http://www.megaupload.com/?d=EY1PRZ2U
第A043集http://www.megaupload.com/?d=SV35PL36
第A044集http://www.megaupload.com/?d=8COIIHYT
第A045集http://www.megaupload.com/?d=16QT2KJC

3月22更新

第A046集http://www.megaupload.com/?d=P1G8INRJ
第A047集http://www.megaupload.com/?d=8NDN001I
第A048集http://www.megaupload.com/?d=2ZMQNEU3
第A049集http://www.megaupload.com/?d=WR64P2A7
第A050集http://www.megaupload.com/?d=ARM9J9H9
第A051集http://www.megaupload.com/?d=HF1AKEEK
第A052集http://www.megaupload.com/?d=8MX7VZO4
第A053集http://www.megaupload.com/?d=IKXZSRFC
第A054集http://www.megaupload.com/?d=TOI28KAE
第A055集http://www.megaupload.com/?d=4F1ENKTI
第A056集http://www.megaupload.com/?d=X28NSWHR
第A057集http://www.megaupload.com/?d=CT1BI9UH
第A058集http://www.megaupload.com/?d=2SWK4M5J
第A059集http://www.megaupload.com/?d=BGKLGCTE
第A060集http://www.megaupload.com/?d=1YIEWRC4
第A061集http://www.megaupload.com/?d=CVG0I42V
第A062集http://www.megaupload.com/?d=SLPMCYP4
第A063集http://www.megaupload.com/?d=5CEGRWS8
第A064集http://www.megaupload.com/?d=ETOMOETI
第A065集http://www.megaupload.com/?d=G3YGVUEF
第A066集http://www.megaupload.com/?d=YP8WAMLU
第A067集http://www.megaupload.com/?d=1N3Z085J
第A068集http://www.megaupload.com/?d=383CL4DR
第A069集http://www.megaupload.com/?d=F5ADPD9T

3月23更新

第A070集http://www.megaupload.com/?d=HYUV4R8R
第A071集http://www.megaupload.com/?d=IOSS9GME
第A072集http://www.megaupload.com/?d=8PGJEA16
第A073集http://www.megaupload.com/?d=92ROO4NB
第A074集http://www.megaupload.com/?d=164C1FUS
第A075集http://www.megaupload.com/?d=FOCBJI92
第A076集http://www.megaupload.com/?d=HZEOFAV9
第A077集http://www.megaupload.com/?d=2I08TIPR
第A078集http://www.megaupload.com/?d=BT3Q8T90
第A079集http://www.megaupload.com/?d=FLUXH8M1
第A080集http://www.megaupload.com/?d=MFWG9WMW
第A081集http://www.megaupload.com/?d=Y6P70NQJ
第A082集http://www.megaupload.com/?d=3ML82FT1
第A083集http://www.megaupload.com/?d=RYXNIX15
第A084集http://www.megaupload.com/?d=8XF0F3B4
第A085集http://www.megaupload.com/?d=GO4HVW1T
第A086集http://www.megaupload.com/?d=7N18JIZ7
第A087集http://www.megaupload.com/?d=5YQDH9AT
第A088集http://www.megaupload.com/?d=K829N8LI
第A089集http://www.megaupload.com/?d=46OFDJGW
第A090集http://www.megaupload.com/?d=3G13IYZV
第A091集http://www.megaupload.com/?d=KX8K998Q
第A092集http://www.megaupload.com/?d=3YGNUT3Y
第A093集http://www.megaupload.com/?d=5ZFZUDCG
第A094集http://www.megaupload.com/?d=KQF5MD5U
第A095集http://www.megaupload.com/?d=Y7NEVBBX

4月3更新

第A096集http://www.megaupload.com/?d=HR4JBEY5
第A097集http://www.megaupload.com/?d=YLBK3TRP
第A098集http://www.megaupload.com/?d=79PA3MSS
第A099集http://www.megaupload.com/?d=P7ZPQBYW
第A100集http://www.megaupload.com/?d=220YFCNH
第A101集http://www.megaupload.com/?d=CGEP67IR
第A102集http://www.megaupload.com/?d=CILPUMOB
第A103集http://www.megaupload.com/?d=CBB6KRS7
第A104集http://www.megaupload.com/?d=ZU4K6O7G
第A105集http://www.megaupload.com/?d=TW9Z3KHP
第A106集http://www.megaupload.com/?d=7TN5VJEA
第A107集http://www.megaupload.com/?d=44WTE3YE
第A108集http://www.megaupload.com/?d=86EUYGGQ
第A109集http://www.megaupload.com/?d=347NYMQO
第A110集http://www.megaupload.com/?d=6UAA1XBH
第A111集http://www.megaupload.com/?d=EFON6OX2
第A112集http://www.megaupload.com/?d=PBCDTS8E
第A113集http://www.megaupload.com/?d=15XSJIT6
第A114集http://www.megaupload.com/?d=VIO3P9OV
第A115集http://www.megaupload.com/?d=86SEMC44
第A116集http://www.megaupload.com/?d=VG2Z3SDB
第A117集http://www.megaupload.com/?d=C7IFH8FL
第A118集http://www.megaupload.com/?d=0FY7AEEY
第A119集http://www.megaupload.com/?d=E86DJTKI
第A120集http://www.megaupload.com/?d=NFAA05SB
第A121集http://www.megaupload.com/?d=6CQ31JVW
第A122集http://www.megaupload.com/?d=Z9T9GIBH
第A123集http://www.megaupload.com/?d=LZBK52RL
第A124集http://www.megaupload.com/?d=S1N60HYV
第A125集http://www.megaupload.com/?d=L0LQ8L52
第A126集http://www.megaupload.com/?d=OG6T81CZ
第A127集http://www.megaupload.com/?d=PRALKKKF
第A128集http://www.megaupload.com/?d=2J8856C5
第A129集http://www.megaupload.com/?d=SKA24Y7F
posted @ 2006-06-09 07:39 蓝色Saga 阅读(765) | 评论 (1)编辑 收藏

清除Windows系统.垃.圾.我最行

为你的电脑系统清除淤塞的**!轻松流畅上网你是否注意到你的电脑系统磁盘的可用空间正在一天天在减少呢?是不是像老去的猴王一样动作一天比一天迟缓呢?没错!在Windows在安装和使用过程中都会产生相当多的**文件,包括临时文件(如:*.tmp、 *._mp)日志文件(*.log)、临时帮助文件(*.gid)、磁盘检查文件(*.chk)、临时备份文件(如:*.old、*.bak)以及其他临时文件。

  特别是如果一段时间不清理IE的临时文件夹“Temporary Internet Files”,其中的缓存文件有时会占用上百MB的磁盘空间。这些**文件不仅仅浪费了宝贵的磁盘空间,严重时还会使系统运行慢如蜗牛。这点相信你肯定忍受不了吧!所以应及时清理系统的**文件的淤塞,保持系统的“苗条”身材,轻松流畅上网!朋友来吧,现 在就让我们一起来快速清除系统**吧!!

  新建一个记事本并输入以下的内容:

  @echo off
  echo 正在清除系统**文件,请稍等......
  del /f /s /q %systemdrive%\*.tmp
  del /f /s /q %systemdrive%\*._mp
  del /f /s /q %systemdrive%\*.log
  del /f /s /q %systemdrive%\*.gid
  del /f /s /q %systemdrive%\*.chk
  del /f /s /q %systemdrive%\*.old
  del /f /s /q %systemdrive%\recycled\*.*
  del /f /s /q %windir%\*.bak
  del /f /s /q %windir%\prefetch\*.*
  rd /s /q %windir%\temp & md %windir%\temp
  del /f /q %userprofile%\cookies\*.*
  del /f /q %userprofile%\recent\*.*
  del /f /s /q "%userprofile%\Local Settings\Temporary Internet Files\*.*"
  del /f /s /q "%userprofile%\Local Settings\Temp\*.*"
  del /f /s /q "%userprofile%\recent\*.*"
  echo 清除系统**完成!
  echo. & pause

  最后将它保存,然后更名为“清除系统**.bat”!ok!你的**清除器就这样制作成功了!

  以后只要双击运行该文件,当屏幕提示“清除系统**完成!就还你一个“苗条”的系统了!!到时候再看看你的电脑,是不是急速如飞呢?

  注:这招比那些所谓的优化大师好用!不会破坏系统文件!
       
 特别提醒:“**” 是 《垃.圾》复制后改成《垃.圾》就行了

posted @ 2006-06-08 15:33 蓝色Saga 阅读(149) | 评论 (0)编辑 收藏

仅列出标题
共7页: 上一页 1 2 3 4 5 6 7 下一页