2009-11-04 54 views

回答

1

好吧,我覺得我有這給了一槍。我將C#實現從My Ten Pennies轉換爲Java,並將an example and source an be downloaded from here。這不是特別好看的代碼,但嘿 - 它希望它能工作。

我還沒有時間來徹底測試它,但我的短期測試工作正常。

用法:

import se.welcomweb.utils.zbase32j; 

public class TestZBase32J { 

    public static void main(String ... args) { 

     ZBase32j zbase = new ZBase32j(); 

     String message = "Hello, world!"; 
     String encoded = zbase.encode(message); 
     System.out.println("Encoded: " + encoded); 

     String decoded = zbase.decode(encoded); 
     System.out.println("Decoded: " + decoded); 

    } 

} 
+0

不幸的是這兩個您所提供的鏈接返回一個HTTP 404或文件不存在。 –

+0

@TheEliteGentleman,更新鏈接。 –

+0

截至今天,鏈接到源代碼再次死亡 – Chris