我创建了一个 WCF 服务,然后在 J2ME 中使用了这个服务。我的 WCF 服务是:
IService:
[OperationContract]
[WebInvoke(Method = "GET", UriTemplate = "/GetByCity/Limit={limit}", BodyStyle = WebMessageBodyStyle.WrappedRequest,
RequestFormat = WebMessageFormat.Json, ResponseFormat = WebMessageFormat.Json)]
ItemList GetByCity(string limit);
Service.CS :
public ItemList GetByCity(string limit)
{
DataTable City = ds.Tables["City"];
var items = WithHTML(City, limit);
return new ItemList { Items = items };
}
public List<Item> WithHTML(DataTable City, string limit)
{
var items = (from d in City.AsEnumerable()
where d.Field<string>("strMainHin") != string.Empty
orderby d.Field<DateTime>("dtPosted")
select new Item
{
ItemId = d.Field<Int32>("intId").ToString(),
ItemLine = htmlEscapes(d.Field<string>("strMainHin")),
Photo = @"http://192.168.1.17:801/ImageById/" + d.Field<Int32>("intId") + ".jpg"
}).Take(Convert.ToInt32(limit)).ToList();
return items;
}
public string htmlEscape(string input)
{ var output = Regex.Replace(input, @"&#([0-9]*);", x => new String((char)int.Parse(x.Groups[1].Value), 1));
return output;
}
现在这个服务在 URL 中的输出http://192.168.1.17:803/Patrika/Service.svc/GetByCity/Limit=2
是:
{"Items":[{"ItemLine":"डेढ़ करोड़ का क्रिकेट सट्टा पकड़ा","ItemId":"821745","Photo":"http:\/\/192.168.1.17:801\/ImageById\/821745.jpg"},{"ItemLine":"पार्किग का इंतजाम नहीं, तो जब्त होंगे वाहन","ItemId":"824837","Photo":"http:\/\/192.168.1.17:801\/ImageById\/824837.jpg"}]}
但是当我通过此链接在 J2ME 中使用此服务时:'http://192.168.1.17:803/Patrika/Service.svc/GetByCity/Limit=2' Unicode 或 UTF-8 我在 J2ME 中给出的返回响应是:
{"ItemLine":"डेढ़ करोड़ का क�रिकेट सट�टा पकड़ा"}
一切都很好,但只有这个带有一些 unicode 的字符串给出了错误的输出。然后我尝试只发送一个数据:
{"ItemLine":"डेढ़ करोड़ का क्रिकेट सट्टा पकड़ा"}
然后在 J2ME 结束时,我将此字符串放入 JSON 对象并将其放入如下标签中:
Label l1=new Label("ItemLine");
this.component.add(l1);
但输出与上面那个错误的 json 字符串相同。