Hi
Ich versuche seit paar Tagen ein Project zu Kompilieren.
wie bekomme diese Keys?
oder muss ich es mit einem Tool erstellen ?
Oder muss ich diese Keys irgendwie erstellen selber oder geht das autmatisch?
Der Fehler taucht hier auf:
Ich versuche seit paar Tagen ein Project zu Kompilieren.
wie bekomme diese Keys?
oder muss ich es mit einem Tool erstellen ?
Oder muss ich diese Keys irgendwie erstellen selber oder geht das autmatisch?
D:\herbivore\build>java HerbivoreGUI
Exception in thread "main" java.lang.Error: Unresolved compilation problems:
PublicKey cannot be resolved to a type
RawRSAPublicKey cannot be resolved to a type
at Buddy.<init>(Buddies.java:189)
at Buddies.AddBuddy(Buddies.java:47)
at Buddies.InitializeBuddies(Buddies.java:31)
at Buddies.<init>(Buddies.java:11)
at HerbivoreGUI.<clinit>(HerbivoreGUI.java:28)
Der Fehler taucht hier auf:
Code:
class Buddy
{
public Buddy(String SIDPath, String buddyName)
{
// Loads a buddy given an SID location, and Nickname
// Implementation details:
// Can load SID here and keep per buddy, or load as needed in Network
// in a caching hashtable.
// The later has been chosen to separate out anything Herbivore related
// into Network
try {
PublicKey destpublicKey = new RawRSAPublicKey(new FileInputStream(SIDPath));
this.pKey = destpublicKey.getEncoded();
} catch(Exception e) {}
this.path = SIDPath;
this.name = buddyName;
status = "Offline";
}
Zuletzt bearbeitet: