右键->全选,右键->复制。:)

解决方案 »

  1.   

    另外一种:
    Ctrl+A->Ctrl+C
      

  2.   

    写个程序,如下
    import java.io.*;
    import java.net.*;public class GetURL {
      public static void main(String[] args){
        InputStream in = null;
        OutputStream out = null;
        int i = 0;
        i++;
        try{
          if((args.length != 1) && (args.length != 2)){
            throw new IllegalArgumentException("Wrong number");
          }
          URL url = new URL(args[0]);
          in = url.openStream();
          if(args.length == 2)
            out = new FileOutputStream(args[1]);
          else
            out = System.out;
          byte[] buffer = new byte[4096];
          int bytes_read;
          while((bytes_read = in.read(buffer)) != -1)
            out.write(buffer,0,bytes_read);
        }catch(Exception e){
          System.err.println(e);
        }
        finally{
          try{in.close();out.close();}catch(Exception e){}
        }
      }
    }命令格式如:java getURL www.google.com tt.txt