0

我开发了一个签名的小程序,用于以加密形式上传文件。我从 jsp 调用的这个小程序运行良好,但我的问题是:我可以从 jsp 调用该小程序,以在 jsp 中返回加密文件并将该文件传递到服务器端吗?我可以在 applet 或 jsp 中为该加密文件创建多部分文件并将其发送到服务器吗?

我正在运行的小程序看起来像:

public static void encryptDecryptFile(String srcFileName,
            String destFileName, Key key, int cipherMode) throws Exception {
        OutputStream outputWriter = null;
        InputStream inputReader = null;     
        try {                   
            Cipher cipher = Cipher.getInstance("RSA/ECB/PKCS1Padding");         
            byte[] buf = cipherMode == Cipher.ENCRYPT_MODE ? new byte[100]
                    : new byte[128];
            int bufl;
            cipher.init(cipherMode, key);           
            outputWriter = new FileOutputStream(destFileName);
            inputReader = new FileInputStream(srcFileName);
            while ((bufl = inputReader.read(buf)) != -1) {          
                byte[] encText = null;
                if (cipherMode == Cipher.ENCRYPT_MODE)
                    encText = encrypt(copyBytes(buf, bufl), (PublicKey) key);
                else
                    encText = decrypt(copyBytes(buf, bufl), (PrivateKey) key);              
                outputWriter.write(encText);
            }           
        } catch (Exception e) {e.printStackTrace();
            throw e;
        } finally {
            try {
                if (outputWriter != null)
                    outputWriter.close();
                if (inputReader != null)
                    inputReader.close();
            } catch (Exception e) {
            }
        }
    }

我的调用 jsp 看起来像:

<applet id="upload" name="upload" code="TestApplet.class" archive="Encrypt.jar" width="360" height="350"></applet>
4

1 回答 1

3

最简单的方法是使用HttpClient Apache Commons库。你必须在你的小程序中做这样的事情:

    public void sendFile throws IOException {
        HttpClient client = new HttpClient();
        PostMethod postMethod = new PostMethod("http://yourserverip:8080/yourServlet");

        File f = new File(destFileName);
       
        postMethod.setRequestBody(new FileInputStream(f));
        postMethod.setRequestHeader("Content-type",
            "text/xml; charset=ISO-8859-1");

        client.executeMethod(postMethod);
        postMethod.releaseConnection();
    }

这将触发您的 servlet doPost() 方法,您可以在其中检索文件。正如您所说,您的小程序应该被签名以允许这样做。

于 2012-07-30T13:37:38.690 回答