怎么用java修改信息_java – 当我得到Exception时如何设置消息

public class XMLParser {

// constructor

public XMLParser() {

}

public String getXmlFromUrl(String url) {

String responseBody = null;

getset d1 = new getset();

String d = d1.getData(); // text

String y = d1.getYear(); // year

String c = d1.getCircular();

String p = d1.getPage();

List nameValuePairs = new ArrayList();

nameValuePairs.add(new BasicNameValuePair("YearID",y));

nameValuePairs.add(new BasicNameValuePair("CircularNo",c));

nameValuePairs.add(new BasicNameValuePair("SearchText",d));

nameValuePairs.add(new BasicNameValuePair("pagenumber",p));

try {

HttpClient httpclient = new DefaultHttpClient();

HttpPost httppost = new HttpPost(url);

httppost.setEntity(new UrlEncodedFormEntity(nameValuePairs));

HttpResponse response = httpclient.execute(httppost);

HttpEntity entity = response.getEntity();

responseBody = EntityUtils.toString(entity);

} catch (UnsupportedEncodingException e) {

e.printStackTrace();

} catch (ClientProtocolException e) {

e.printStackTrace();

} catch (IOException e) {

e.printStackTrace();

}

// return XML

return responseBody;

}

public Document getDomElement(String xml) {

Document doc = null;

DocumentBuilderFactory dbf = DocumentBuilderFactory.newInstance();

try {

DocumentBuilder db = dbf.newDocumentBuilder();

InputSource is = new InputSource();

is.setCharacterStream(new StringReader(xml));

doc = db.parse(is);

} catch (ParserConfigurationException e) {

Log.e("Error: ",e.getMessage());

return null;

} catch (SAXException e) {

Log.e("Error: ",e.getMessage());

// i m getting Exception here

return null;

} catch (IOException e) {

Log.e("Error: ",e.getMessage());

return null;

}

return doc;

}

/**

* Getting node value

*

* @param elem

* element

*/

public final String getElementValue(Node elem) {

Node child;

if (elem != null) {

if (elem.hasChildNodes()) {

for (child = elem.getFirstChild(); child != null; child = child

.getNextSibling()) {

if (child.getNodeType() == Node.TEXT_NODE) {

return child.getNodeValue();

}

}

}

}

return "";

}

/**

* Getting node value

*

* @param Element

* node

* @param key

* string

* */

public String getValue(Element item,String str) {

NodeList n = item.getElementsByTagName(str);

return this.getElementValue(n.item(0));

}

}

我在这个类中获取Exception来解析数据.我想在另一个从Activity扩展的类中打印此消息.你能告诉我怎么样吗?我尝试了很多,但没能做到..

public class AndroidXMLParsingActivity extends Activity {

public int currentPage = 1;

public ListView lisView1;

static final String KEY_ITEM = "docdetails";

static final String KEY_NAME = "heading";

public Button btnNext;

public Button btnPre;

public static String url = "http://dev.taxmann.com/TaxmannService/TaxmannService.asmx/GetNotificationList";

@Override

public void onCreate(Bundle savedInstanceState) {

super.onCreate(savedInstanceState);

setContentView(R.layout.main);

// listView1

lisView1 = (ListView) findViewById(R.id.listView1);

// Next

btnNext = (Button) findViewById(R.id.btnNext);

// Perform action on click

btnNext.setOnClickListener(new View.OnClickListener() {

public void onClick(View v) {

currentPage = currentPage + 1;

ShowData();

}

});

// PrevIoUs

btnPre = (Button) findViewById(R.id.btnPre);

// Perform action on click

btnPre.setOnClickListener(new View.OnClickListener() {

public void onClick(View v) {

currentPage = currentPage - 1;

ShowData();

}

});

ShowData();

}

public void ShowData() {

XMLParser parser = new XMLParser();

String xml = parser.getXmlFromUrl(url); // getting XML

Document doc = parser.getDomElement(xml); // getting DOM element

NodeList nl = doc.getElementsByTagName(KEY_ITEM);

int displayPerPage = 5; // Per Page

int TotalRows = nl.getLength();

int indexRowStart = ((displayPerPage * currentPage) - displayPerPage);

int TotalPage = 0;

if (TotalRows <= displayPerPage) {

TotalPage = 1;

} else if ((TotalRows % displayPerPage) == 0) {

TotalPage = (TotalRows / displayPerPage);

} else {

TotalPage = (TotalRows / displayPerPage) + 1; // 7

TotalPage = (int) TotalPage; // 7

}

int indexRowEnd = displayPerPage * currentPage; // 5

if (indexRowEnd > TotalRows) {

indexRowEnd = TotalRows;

}

// Disabled Button Next

if (currentPage >= TotalPage) {

btnNext.setEnabled(false);

} else {

btnNext.setEnabled(true);

}

// Disabled Button Previos

if (currentPage <= 1) {

btnPre.setEnabled(false);

} else {

btnPre.setEnabled(true);

}

// Load Data from Index

int RowID = 1;

ArrayList> menuItems = new ArrayList>();

HashMap map;

// RowID

if (currentPage > 1) {

RowID = (displayPerPage * (currentPage - 1)) + 1;

}

for (int i = indexRowStart; i < indexRowEnd; i++) {

Element e = (Element) nl.item(i);

// adding each child node to HashMap key => value

map = new HashMap();

map.put("RowID",String.valueOf(RowID));

map.put(KEY_NAME,parser.getValue(e,KEY_NAME));

// adding HashList to ArrayList

menuItems.add(map);

RowID = RowID + 1;

}

SimpleAdapter sAdap;

sAdap = new SimpleAdapter(AndroidXMLParsingActivity.this,menuItems,R.layout.list_item,new String[] { "RowID",KEY_NAME },new int[] { R.id.ColRowID,R.id.ColName });

lisView1.setAdapter(sAdap);

}

}

这是我想要打印该消息的课程

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值