crypturlconnection.java

来自「learning java的源代码。书中每个实例都有相关的代码example。」· Java 代码 · 共 44 行

JAVA
44
字号
//file: CryptURLConnection.javaclass CryptURLConnection extends URLConnection {    static int defaultPort = 80;    CryptInputStream cis;    public String getContentType(  ) {        return guessContentTypeFromName( url.getFile(  ) );    }    CryptURLConnection ( URL url, String crypType )      throws IOException {        super( url );        try {            String classname = "learningjava.protocolhandlers.crypt."                + crypType + "CryptInputStream";            cis = (CryptInputStream)                   Class.forName(classname).newInstance(  );        } catch ( Exception e ) {            throw new IOException("Crypt Class Not Found: "+e);        }    }    public void connect(  ) throws IOException {        int port = ( url.getPort(  ) == -1 ) ?                     defaultPort : url.getPort(  );        Socket s = new Socket( url.getHost(  ), port );        // Send the filename in plaintext        OutputStream server = s.getOutputStream(  );        new PrintWriter( new OutputStreamWriter( server, "8859_1" ),                         true).println( "GET " + url.getFile(  ) );        // Initialize the CryptInputStream        cis.set( s.getInputStream(  ), server );        connected = true;    }    public InputStream getInputStream(  ) throws IOException {        if (!connected)            connect(  );        return ( cis );    }}

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?