我正在閱讀使用此代碼的服務器的響應。如何在黑莓的對象選擇字段中顯示HTTP響應
public static String getContentString(HttpConnection Connection) throws IOException
{
String Entity=null;
InputStream inputStream;
inputStream = Connection.openInputStream();//May give network io
StringBuffer buf = new StringBuffer();
int c;
while ((c = inputStream.read()) != -1)
{
buf.append((char) c);
}
//Response Formation
try
{
Entity = buf.toString();
return Entity;
}
catch(NullPointerException e)
{
Entity = null;
return Entity;
}
}
我需要選擇對象領域顯示此實體。 例如: 假設我得到回覆實體= ThisIsGoingToGood
然後,我需要在對象選擇下拉列表中顯示下面的方式。
這
是
去
要
好
請告訴我如何做到這一點。
你會喜歡「ThisIsGoingToGood」。然後通過分割「This」,「Is」,「Going」,「To」,「Good」等文字來轉換。你是什麼意思 ? – Signare 2013-04-10 07:22:32
@ Signare-它不是第一個文本文件。它是在代碼中顯示的實體字符串中的響應。通過分割實體字符串的文本。我試圖展示我如何在對象選擇領域需要這個。作爲「這個」應該是choicefield的第一選擇。「是」應該是choicefield的第二選擇等等。 – user2218773 2013-04-10 07:24:04
**你在問什麼**問題?你問如何拆分一個沒有空格的字符串?你問的是如何從後臺線程更新ObjectListField,這是請求HTTP數據? – Nate 2013-04-10 08:13:15