I2P Address: [http://git.idk.i2p]

Skip to content
Snippets Groups Projects
Commit 14a6352d authored by Oldaris's avatar Oldaris
Browse files

Corrected UTF-8 encoding

parent 5782c42d
No related branches found
No related tags found
No related merge requests found
...@@ -294,10 +294,10 @@ public class HeaderLine implements Encoding { ...@@ -294,10 +294,10 @@ public class HeaderLine implements Encoding {
} }
public static void main( String[] args ) throws EncodingException { public static void main( String[] args ) throws EncodingException {
String text = "Subject: test test test test test test test test test test test test test test test test test test test test test test test test test test test test test test test test test test test test test test test test test test test test test test test test test test test test test test test test test test test test test test test test test test test test test test test test \r\n" + String text = "Subject: test test test test test test test test test test test test test test test test test test test test test test test test test test test test test test test test test test test test test test test test test test test test test test test test test test test test test test test test test test test test test test test test test test test test test test test test \r\n" +
"From: Smrebrd <smoerebroed@mail.i2p>\r\n" + "From: Smörebröd <smoerebroed@mail.i2p>\r\n" +
"To: ���� <lalala@mail.i2p>\r\n"; "To: äöüß <lalala@mail.i2p>\r\n";
HeaderLine hl = new HeaderLine(); HeaderLine hl = new HeaderLine();
System.out.println( hl.encode( text ) ); System.out.println( hl.encode( text ) );
System.out.println( hl.encode( "test ���" ) ); System.out.println( hl.encode( "test ÄÖÜ" ) );
} }
} }
\ No newline at end of file
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment