我正在使用此代码从服务器读取响应。
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;
}
}
我需要在对象选择字段中显示此实体。例如:假设我得到响应 Entity=ThisIsGoingToGood
然后,我需要在对象选择下拉列表中显示以下方式。
这
是
去
到
好的
请告诉我如何实现这一目标。