0

我创建了一个 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 字符串相同。

4

1 回答 1

1

服务:

  [OperationContract]
                [WebInvoke(Method = "GET", UriTemplate = "/GetByCity/Limit={limit}", BodyStyle = WebMessageBodyStyle.WrappedRequest,
    RequestFormat = WebMessageFormat.Json, ResponseFormat = WebMessageFormat.Json)]
                ItemList GetByCity(string limit);

服务.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 = String.Join("", WebUtility.HtmlDecode(input).Select(x => "\\u" + ((int)x).ToString("X4")));
            return output;
        }

在 Last 方法中输入是:

&#2351;&#2369;&#2357;&#2340;&#2368; &#2325;&#2366; &#2309;&#2343;&#2332;&#2354;&#2366; &#2358;&#2357; &#2350;&#2367;&#2354;&#2366;

输出是:

\\\u0921\\\u0947\\\u0922\\\u093C \\\u0915\\\u0930\\\u094B\\\u0921\\\u093C \\\u0915\\\u093E \\\u0915\\\u094D\\\u0930\\\u093F\\\u0915\\\u0947\\\u091F \\\u0938\\\u091F\\\u094D\\\u091F\\\u093E \\\u092A\\\u0915\\\u0921\\\u093C\\\u093E

在这个输出中,我得到了额外的“\”,所以这不是在 J2ME 中呈现的。

所以在客户端意味着在 J2ME 端我拆分了我得到的字符串,然后转换\\\\\.

这就是我得到的印地语字体:युवती का अधजला शव मिला

感谢@Codo,他帮了我很多。

于 2012-09-12T05:46:20.920 回答