0
我基本上想爲圖像轉換爲文本的Android應用程序。網址http://www.wisetrend.com/WiseTREND_Online_OCR_API_v2.0.htm提供了有關如何在C#中使用該示例的示例演示。但我在java中使用webservices並不是很舒服。任何人都可以幫助我製作Android客戶端使用WiseTrend OCR webservice
任何幫助,非常感謝。
我基本上想爲圖像轉換爲文本的Android應用程序。網址http://www.wisetrend.com/WiseTREND_Online_OCR_API_v2.0.htm提供了有關如何在C#中使用該示例的示例演示。但我在java中使用webservices並不是很舒服。任何人都可以幫助我製作Android客戶端使用WiseTrend OCR webservice
任何幫助,非常感謝。
嗨看看here
您將使用的HttpClient發佈一個請求。
HttpPost httppost = new HttpPost(....
StringEntity se = new StringEntity(XML,HTTP.UTF_8);
se.setContentType("text/xml");
httppost.setHeader("Content-Type","text/xml");
httppost.setEntity(se);
BasicHttpResponse httpResponse = (BasicHttpResponse)
httpclient.execute(httppost);