3

gwtを使用してプラグインを開発したい。クライアント側でのキー生成にはjava.security。*を使用する必要があります。私はすべての要件を作成しましたが、次のエラーが表示されています。

モジュールのロード

coreservlets.GwtApp1

Loading inherited module 'coreservlets.GwtApp1'
    Loading inherited module 'java.security.KeyPair'
       [ERROR] Unable to find 'java/security/KeyPair.gwt.xml' on your classpath; >could be a typo, or maybe you forgot to include a classpath entry for source?
    [ERROR] Line 15: Unexpected exception while processing element 'inherits'

gwtapp1.gwt.xmlファイルの「java.security.KeyPair」などの関連クラスをすべて継承しました

また、クラスパス自体にjarを含めましたが、それでもエラーは発生していません。ここで何をすべきか.plzは私のJavaコードを提案します

package coreservlets.client;

import java.io.UnsupportedEncodingException;
import java.security.KeyPair;
import java.security.KeyPairGenerator;
import java.security.NoSuchAlgorithmException;
import java.security.NoSuchProviderException;
import java.security.PrivateKey;
import java.security.PublicKey;
import java.security.SecureRandom;


public class Keygen {

private PrivateKey privKey;
private PublicKey pubKey;
private static Keygen keygen = null;

private Keygen() {

}

public static Keygen getInstance() {

    if (keygen == null) {
        keygen = new Keygen();
    }

    return keygen;
}

public void KeyGenerator(String ALGORITHAM) {
    KeyPairGenerator keyGen = null;
    SecureRandom random = null;
    try {
        keyGen = KeyPairGenerator.getInstance(ALGORITHAM);
    } catch (NoSuchAlgorithmException ex) {
        ex.printStackTrace();
    }
    try {
        random = SecureRandom.getInstance("SHA1PRNG", "SUN");
        //random = SecureRandom.getInstance("SHA1PRNG");
    } catch (NoSuchAlgorithmException e) {
        e.printStackTrace();

    } catch (NoSuchProviderException ex) {
        ex.printStackTrace();
    }

    //keyGen.initialize(1024, random);
    keyGen.initialize(1024);
    KeyPair key = keyGen.generateKeyPair();
    privKey = key.getPrivate();
    pubKey = key.getPublic();

}

public String getPubKeyasString() {
    //return Base64.encodeBase64String(pubKey.getEncoded());
    try {
        return new String(pubKey.getEncoded(),"ISO-8859-1");
    } catch (UnsupportedEncodingException e) {
        // TODO Auto-generated catch block
        e.printStackTrace();
    }
    return null;
}
public String getPriKeyasString() {
    //return Base64.encodeBase64String(privKey.getEncoded());
    try {
        return new String(privKey.getEncoded(),"ISO-8859-1");
    } catch (UnsupportedEncodingException e) {
        // TODO Auto-generated catch block
        e.printStackTrace();
    }
    return null;
}

}

4

2 に答える 2

0

.gwt.xmlファイル内で<inherits ...>は、別のファイルを参照し.gwt.xmlます。import ...代わりにJavaのように使用したと思いますか?

GWT でクライアント側を使用したい場合にすべきことはjava.security.KeyPair、ソースが GWT コンパイラーで利用可能であることを確認することです。これは<source path="..." />、ファイル内のエントリを使用して行われ.gwt.xmlます。

GWT JRE エミュレーション リファレンスページにアクセスしてみてください。悲しいことに、どのパッケージもサポートされていないことがわかります。プロジェクトを頑張ってください...おそらく、サーバー側でのみjavax.*コードを使用したままにしておく必要がありますか?KeyPair

それが役立つことを願っています。

于 2012-11-20T14:41:55.403 に答える