public void testQuotedPrintableEncoding_2() throws UnsupportedEncodingException {
String text = "This is a string with special characters 新中西里杨阿姨.";
String expected = "This is a string with special characters =E6=96=B0=E4=B8=AD=E8=A5=BF=E9=87=8C=E6=9D=A8=E9=98=BF=E5=A7=A8.";
QuotedPrintableCodec QPC = new QuotedPrintableCodec();
String encodedText = QPC.encode(text, "UTF8");
assertEquals(expected, encodedText);
}
@Test
public void testForceEncodeQuotedPrintableSpaces_1() throws VCardBuildException {