1 18 19 package sync4j.syncclient.spds; 20 21 import java.io.IOException ; 22 23 36 public class XMLSyncMLClient 37 extends BaseSyncMLClient 38 implements SyncMLClient { 39 40 42 44 46 48 public String sendMessage(String msg) 49 throws IOException { 50 return sendMessage(msg, "UTF-8"); 51 } 52 53 public String sendMessage(String msg, String charSet) 54 throws IOException { 55 return new String (sendMessage(msg.getBytes(charSet))); 56 } 57 58 } 59 | Popular Tags |